Skip to content

Commit

Permalink
Fix minification issue. Set version to 1.3.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
sletz committed Apr 29, 2024
1 parent 3601d63 commit 7f039c9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ The _Diagram_ tab allows displaying the circuit SVG diagram. You can navigate in

The [soundfile](https://faustdoc.grame.fr/manual/syntax/#soundfile-primitive) primitive can be used in the IDE. The audio files have to be accessed:

- simply dropping all needed soundfiles in the *Project Files* section on the left, then directly accessing them in the DSP code
- by dropping all needed soundfiles in the *Project Files* section on the left, then directly accessing them in the DSP code

- using a full URL like https://raw.githubusercontent.com/grame-cncm/GameLAN/master/baliphone/Gamelan_1_1_C_gauche.flac
- by using a full URL like https://raw.githubusercontent.com/grame-cncm/GameLAN/master/baliphone/Gamelan_1_1_C_gauche.flac

- by defining the soundfile base URL folder with the `declare soundfiles "https://raw.githubusercontent.com/grame-cncm/GameLAN/master/baliphone";` metadata, then the actual audio file name in the code. See this [example](https://github.com/grame-cncm/GameLAN/blob/master/baliphone/Baliphone.dsp). Several base URL can be listed with the `declare soundfiles "https://url1;https://url2;https://url3";` kind of syntax

Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fausteditorweb",
"version": "1.3.0",
"version": "1.3.1",
"description": "Faust Editor",
"main": "src/index.ts",
"private": true,
Expand Down
3 changes: 3 additions & 0 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,14 @@ const config = {
]
},
optimization: {
minimize: false
/*
minimizer: [
new TerserPlugin({
exclude: /libfaust-wasm\.js/
})
],
*/
},
plugins: [
new CleanWebpackPlugin(),
Expand Down

0 comments on commit 7f039c9

Please sign in to comment.