Skip to content

Commit

Permalink
package.json: version 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mfcc64 committed Feb 25, 2024
1 parent de14439 commit 60e4376
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const { ShowCQT } = await import("showcqt");
### CDN
```js
// use a specific version
import ShowCQT from "https://cdn.jsdelivr.net/npm/[email protected].1/showcqt.mjs";
import ShowCQT from "https://cdn.jsdelivr.net/npm/[email protected].2/showcqt.mjs";

// use a specific major version
import ShowCQT from "https://cdn.jsdelivr.net/npm/showcqt@2/showcqt.mjs";
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "showcqt",
"version": "2.0.1",
"version": "2.0.2",
"description": "ShowCQT (Constant Q Transform) audio visualization",
"main": "showcqt-main.mjs",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion showcqt-main.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,6 @@ var ShowCQT = {
}
};

ShowCQT.version = "2.0.1";
ShowCQT.version = "2.0.2";
export { ShowCQT };
export default ShowCQT;
4 changes: 2 additions & 2 deletions showcqt.mjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// CDN entry point
// version: 2.0.1
export {default, ShowCQT} from "../[email protected].1/showcqt-main.mjs";
// version: 2.0.2
export {default, ShowCQT} from "../[email protected].2/showcqt-main.mjs";

0 comments on commit 60e4376

Please sign in to comment.