@grame/faustwasm 0.13.3 → 0.13.4
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 +4 -1
- package/assets/standalone/faustwasm/index.js.map +2 -2
- package/dist/cjs/index.js +4 -1
- package/dist/cjs/index.js.map +2 -2
- package/dist/cjs-bundle/index.js +4 -1
- package/dist/cjs-bundle/index.js.map +2 -2
- package/dist/esm/index.js +4 -1
- package/dist/esm/index.js.map +2 -2
- package/dist/esm-bundle/index.js +4 -1
- package/dist/esm-bundle/index.js.map +2 -2
- package/package.json +1 -1
- package/scripts/faust2sndfile.js +0 -0
- package/scripts/faust2svg.js +0 -0
- package/scripts/faust2wasm.js +0 -0
- package/src/FaustDspGenerator.ts +7 -1
- package/test/faustlive-wasm/faustwasm/index.js +4 -1
- package/test/faustlive-wasm/faustwasm/index.js.map +2 -2
- package/test/web/create-faust-node.js +4 -3
package/dist/esm-bundle/index.js
CHANGED
|
@@ -11336,7 +11336,10 @@ process = adaptorIns(dsp_code.process) : dsp_code.effect : adaptorOuts;
|
|
|
11336
11336
|
}
|
|
11337
11337
|
}
|
|
11338
11338
|
} catch (e) {
|
|
11339
|
-
|
|
11339
|
+
const errorMessage = e instanceof Error ? e.message : String(e != null ? e : "unknown error");
|
|
11340
|
+
if (!errorMessage.includes("undefined symbol : effect")) {
|
|
11341
|
+
console.warn(e);
|
|
11342
|
+
}
|
|
11340
11343
|
this.voiceFactory = await compiler.createPolyDSPFactory(
|
|
11341
11344
|
name,
|
|
11342
11345
|
dspCodeAux,
|