@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
|
@@ -5548,7 +5548,10 @@ process = adaptorIns(dsp_code.process) : dsp_code.effect : adaptorOuts;
|
|
|
5548
5548
|
}
|
|
5549
5549
|
}
|
|
5550
5550
|
} catch (e) {
|
|
5551
|
-
|
|
5551
|
+
const errorMessage = e instanceof Error ? e.message : String(e != null ? e : "unknown error");
|
|
5552
|
+
if (!errorMessage.includes("undefined symbol : effect")) {
|
|
5553
|
+
console.warn(e);
|
|
5554
|
+
}
|
|
5552
5555
|
this.voiceFactory = await compiler.createPolyDSPFactory(
|
|
5553
5556
|
name,
|
|
5554
5557
|
dspCodeAux,
|