@grame/faustwasm 0.11.2 → 0.12.0
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/faust-pwa.js +344 -0
- package/assets/standalone/index-pwa.js +49 -181
- package/dist/cjs-bundle/index.js +4 -4
- package/dist/cjs-bundle/index.js.map +2 -2
- package/dist/esm-bundle/index.js +4 -4
- package/dist/esm-bundle/index.js.map +2 -2
- package/libfaust-wasm/libfaust-wasm.data +0 -0
- package/libfaust-wasm/libfaust-wasm.js +1 -1
- package/libfaust-wasm/libfaust-wasm.wasm +0 -0
- package/package.json +1 -1
- package/src/copyWebStandaloneAssets.js +3 -0
- package/test/faustlive-wasm/index.html +0 -3
|
Binary file
|
package/package.json
CHANGED
|
@@ -80,6 +80,9 @@ const copyWebPWAAssets = (outputDir, dspName, poly = false, effect = false) => {
|
|
|
80
80
|
const templateJSPath = path.join(__dirname, "../assets/standalone/index-pwa.js");
|
|
81
81
|
cpSyncModify(templateJSPath, outputDir + `/index.js`, ...findAndReplace);
|
|
82
82
|
|
|
83
|
+
const templatePWAJSPath = path.join(__dirname, "../assets/standalone/faust-pwa.js");
|
|
84
|
+
cpSyncModify(templatePWAJSPath, outputDir + `/faust-pwa.js`, ...findAndReplace);
|
|
85
|
+
|
|
83
86
|
const templateHTMLPath = path.join(__dirname, "../assets/standalone/index-pwa.html");
|
|
84
87
|
cpSyncModify(templateHTMLPath, outputDir + `/index.html`, ...findAndReplace);
|
|
85
88
|
|
|
@@ -22,9 +22,6 @@
|
|
|
22
22
|
<P>Settings (buffer size, polyphonic mode and voices, audio rendering model, sample size and ftz mode) can be
|
|
23
23
|
changed dynamically
|
|
24
24
|
and the DSP will be recompiled on the fly.
|
|
25
|
-
<P>Clicking on the yellow cross on the top right allows to access to the GRAME online compiler, to generate
|
|
26
|
-
different targets (like for instance standalone applications, VST, Max/MSP plugins, iOS or JUCE ready
|
|
27
|
-
projects...).
|
|
28
25
|
<div class="config">
|
|
29
26
|
|
|
30
27
|
<div class="config-element">
|