spessasynth_core 4.3.9 → 4.3.10
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/dist/index.d.ts +1 -1
- package/package.json +6 -3
package/dist/index.d.ts
CHANGED
|
@@ -4224,7 +4224,7 @@ declare class BasicMIDI {
|
|
|
4224
4224
|
* Do not call in audioWorkletGlobalScope as it uses TextDecoder.
|
|
4225
4225
|
* RMIDI encoding overrides the provided encoding.
|
|
4226
4226
|
*/
|
|
4227
|
-
getExtraMetadata(encoding?: string):
|
|
4227
|
+
getExtraMetadata(encoding?: string): string[];
|
|
4228
4228
|
/**
|
|
4229
4229
|
* Sets a given RMIDI info value.
|
|
4230
4230
|
* @param infoType The type to set.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spessasynth_core",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.10",
|
|
4
4
|
"description": "MIDI and SoundFont2/DLS library with no compromises",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
"scripts": {
|
|
10
10
|
"test": "node examples/midi_to_wav_node.ts",
|
|
11
11
|
"lint": "eslint --cache",
|
|
12
|
-
"build:fast": "rimraf -rf dist && tsdown src/index.ts --platform neutral --sourcemap",
|
|
12
|
+
"build:fast": "rimraf -rf dist && tsdown src/index.ts --tsconfig src/tsconfig.json --platform neutral --sourcemap",
|
|
13
13
|
"build": "npm run test:types && npm run build:fast",
|
|
14
14
|
"format": "prettier . --write",
|
|
15
15
|
"test:types": "npm run lint && tsc -b ",
|
|
16
16
|
"test:midi": "tsx tests/midi_file/make_tests.ts",
|
|
17
|
-
"
|
|
17
|
+
"install:examples": "tsx scripts/install_examples.ts",
|
|
18
18
|
"prepublishOnly": "npm run format && npm run build",
|
|
19
19
|
"prepare": "husky install"
|
|
20
20
|
},
|
|
@@ -79,5 +79,8 @@
|
|
|
79
79
|
"eslint --cache --fix"
|
|
80
80
|
],
|
|
81
81
|
"*.{json,md,yml,yaml}": "prettier --write"
|
|
82
|
+
},
|
|
83
|
+
"allowScripts": {
|
|
84
|
+
"esbuild@0.28.0": true
|
|
82
85
|
}
|
|
83
86
|
}
|