Comparing version 0.8.0 to 0.8.1
@@ -5,2 +5,8 @@ # Changelog | ||
## 0.8.1 - 2020-07-28 | ||
### Added | ||
* TypeScript declaration (`.d.ts`) files | ||
## 0.8.0 - 2020-07-28 | ||
@@ -7,0 +13,0 @@ |
{ | ||
"name": "webmscore", | ||
"version": "0.8.0", | ||
"version": "0.8.1", | ||
"description": "MuseScore's libmscore in WebAssembly! Read mscz data, and generate audio/MIDI/MusicXML/SVG/PNG/PDF sheets right in browsers", | ||
@@ -19,3 +19,4 @@ "type": "module", | ||
"webmscore.mjs", | ||
"webmscore.lib.*" | ||
"webmscore.lib.*", | ||
"!webmscore.lib.d.ts" | ||
], | ||
@@ -47,8 +48,9 @@ "keywords": [ | ||
"scripts": { | ||
"build": "npm run clean && npm run compile && npm run bundle", | ||
"build": "npm run clean && npm run compile && npm run bundle && npm run d-ts", | ||
"bundle": "rollup -c", | ||
"compile": "cd ../ && make release", | ||
"clean": "cd ../ && make clean", | ||
"clean": "rm src/*.d.ts && cd ../ && make clean", | ||
"d-ts": "tsc --declaration --allowJs src/index.js || echo", | ||
"prepack": "cp ../README.md . && cp ../CHANGELOG.md ." | ||
} | ||
} |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
29236776
20
5669