@grame/faustwasm 0.0.33 → 0.0.34
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/assets/standalone/faustwasm/index.js +1 -1
- package/assets/standalone/faustwasm/index.js.map +2 -2
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +2 -2
- package/dist/cjs-bundle/index.js +1 -1
- package/dist/cjs-bundle/index.js.map +2 -2
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +2 -2
- package/dist/esm-bundle/index.js +1 -1
- package/dist/esm-bundle/index.js.map +2 -2
- package/package.json +1 -1
- package/src/FaustDspGenerator.ts +1 -1
- package/test/faustlive-wasm/faustwasm/index.js +1 -1
- package/test/faustlive-wasm/faustwasm/index.js.map +2 -2
package/package.json
CHANGED
package/src/FaustDspGenerator.ts
CHANGED
|
@@ -375,7 +375,7 @@ const dependencies = {
|
|
|
375
375
|
|
|
376
376
|
getMeta() { return JSON.parse(this.factory!.json); }
|
|
377
377
|
getJSON() { return JSON.stringify(this.getMeta()); }
|
|
378
|
-
getUI() { return this.getMeta(); }
|
|
378
|
+
getUI() { return this.getMeta().ui; }
|
|
379
379
|
}
|
|
380
380
|
|
|
381
381
|
export class FaustPolyDspGenerator implements IFaustPolyDspGenerator {
|