@grame/faustwasm 0.15.3 → 0.15.5

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/README.md CHANGED
@@ -73,7 +73,7 @@ node scripts/faust2wasm.js test/poly.dsp test/out -poly
73
73
  ```
74
74
  will create a set of files: `index.js`, `dsp-module.wasm`, `dsp-meta.json`, `index.html` (and possibly `effect-module.wasm`, `effect-meta.json`) in the `out` folder.
75
75
 
76
- ##### Local include files and `-I`
76
+ #### Local include files and `-I`
77
77
 
78
78
  The CLI runs the Faust compiler inside a WebAssembly in-memory filesystem, so it cannot read your host filesystem directly. To make local `import("something.lib")` work:
79
79
 
@@ -86,7 +86,7 @@ This means you can run the CLI from any working directory as long as your local
86
86
  Example:
87
87
 
88
88
  ```bash
89
- node scripts/faust2wasm.js -I test/includes test/something.dsp test/out
89
+ node scripts/faust2wasm.js -I test/includes test/foo.dsp test/out
90
90
  ```
91
91
 
92
92
  #### Creating a Progressive Web Application (PWA) of a Faust DSP