supersonic-scsynth 0.61.0 → 0.63.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/README.npm.md +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
package/README.npm.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supersonic-scsynth",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.63.0",
|
|
4
4
|
"description": "SuperCollider scsynth WebAssembly port for AudioWorklet - Run SuperCollider synthesis in the browser",
|
|
5
5
|
"main": "dist/supersonic.js",
|
|
6
6
|
"types": "supersonic.d.ts",
|
|
@@ -8,14 +8,14 @@
|
|
|
8
8
|
"jsdelivr": "dist/supersonic.js",
|
|
9
9
|
"type": "module",
|
|
10
10
|
"scripts": {
|
|
11
|
-
"build": "./scripts/build.sh",
|
|
12
|
-
"build:release": "./scripts/build.sh --release",
|
|
11
|
+
"build": "./scripts/build-web.sh",
|
|
12
|
+
"build:release": "./scripts/build-web.sh --release",
|
|
13
13
|
"clean": "./scripts/clean.sh",
|
|
14
14
|
"dev": "cd example && npx serve",
|
|
15
15
|
"pretest": "esbuild node_modules/fast-check/lib/fast-check.js --bundle --format=esm --outfile=test/assets/fast-check.bundle.js",
|
|
16
16
|
"test": "playwright test --reporter=list --max-failures=1",
|
|
17
17
|
"test:all": "playwright test --reporter=list",
|
|
18
|
-
"prepublishOnly": "./scripts/build.sh --release",
|
|
18
|
+
"prepublishOnly": "./scripts/build-web.sh --release",
|
|
19
19
|
"test:types": "tsd",
|
|
20
20
|
"docs:api": "typedoc && mv docs/api-generated/README.md docs/API.md && rm -rf docs/api-generated",
|
|
21
21
|
"docs:npm-readme": "node scripts/build-npm-readme.mjs"
|