Skip to content

Commit a6c462e

Browse files
committed
release v0.1.0
1 parent 6a23765 commit a6c462e

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

web-public/package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "webmscore",
3-
"version": "0.1.0-rc.1",
3+
"version": "0.1.0",
44
"description": "MuseScore's libmscore in WebAssembly! Read mscz data, and generate MIDI/MusicXML/SVG/PNG/PDF sheets right in browsers",
55
"type": "module",
66
"main": "./webmscore.js",
7-
"module": "./src/index.js",
7+
"module": "./webmscore.mjs",
88
"exports": {
99
"browser": "./src/index.js",
1010
"node": "./src/nodejs.js"
@@ -13,6 +13,7 @@
1313
"src",
1414
"schemas.ts",
1515
"webmscore.js",
16+
"webmscore.mjs",
1617
"webmscore.lib.*"
1718
],
1819
"keywords": [
@@ -40,8 +41,10 @@
4041
"rollup": "^2.8.2"
4142
},
4243
"scripts": {
44+
"build": "npm run clean && npm run compile && npm run bundle",
4345
"bundle": "rollup -c",
44-
"build": "cd ../ && make release",
46+
"compile": "cd ../ && make release",
47+
"clean": "cd ../ && make clean",
4548
"prepack": "cp ../README.md ."
4649
}
4750
}

0 commit comments

Comments
 (0)