@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grame/faustwasm",
3
- "version": "0.0.33",
3
+ "version": "0.0.34",
4
4
  "description": "WebAssembly version of Faust Compiler",
5
5
  "main": "dist/cjs/index.js",
6
6
  "types": "dist/esm/index.d.ts",
@@ -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 {
@@ -3626,7 +3626,7 @@ const dependencies = {
3626
3626
  return JSON.stringify(this.getMeta());
3627
3627
  }
3628
3628
  getUI() {
3629
- return this.getMeta();
3629
+ return this.getMeta().ui;
3630
3630
  }
3631
3631
  };
3632
3632
  var FaustMonoDspGenerator = _FaustMonoDspGenerator;