-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
2,271 additions
and
2,008 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,6 +75,8 @@ build-all: | |
just build-docs | ||
|
||
run: | ||
#!/bin/bash | ||
|
||
just remove-annoying-litegraph-warning | ||
|
||
cd engine \ | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
cd engine && cargo build --target wasm32-unknown-unknown && | ||
cd ../midi && cargo build --target wasm32-unknown-unknown && | ||
cd ../polysynth && cargo build --target wasm32-unknown-unknown --features wasm-bindgen-exports && | ||
cd ../wavetable && cargo build --release --target wasm32-unknown-unknown --no-default-features && | ||
mv ../target/wasm32-unknown-unknown/release/wavetable.wasm ../target/wasm32-unknown-unknown/release/wavetable_no_simd.wasm && | ||
cd ../spectrum_viz && cargo build --release --target wasm32-unknown-unknown && | ||
cd ../wavetable && RUSTFLAGS="-Ctarget-feature=+simd128" cargo build --release --target wasm32-unknown-unknown && | ||
cd ../waveform_renderer && cargo build --release --target wasm32-unknown-unknown && | ||
cd ../granular && cargo build --release --target wasm32-unknown-unknown && | ||
cd ../event_scheduler && cargo build --release --target wasm32-unknown-unknown && | ||
cd ../sidechain && cargo build --release --target wasm32-unknown-unknown && | ||
cd ../noise_gen && cargo build --release --target wasm32-unknown-unknown && | ||
cd ../distortion && cargo build --release --target wasm32-unknown-unknown && | ||
cd ../adsr && cargo build --features=exports --release --target wasm32-unknown-unknown && | ||
cd ../note_container && cargo build --release --target wasm32-unknown-unknown && | ||
cd ../sample_editor && cargo build --release --target wasm32-unknown-unknown && | ||
cd ../delay && cargo build --release --target wasm32-unknown-unknown && | ||
cd ../sample_player && cargo build --release --target wasm32-unknown-unknown && | ||
cd ../wav_decoder && cargo build --release --target wasm32-unknown-unknown && | ||
cd ../looper && cargo build --release --target wasm32-unknown-unknown |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#![feature(nll, box_syntax)] | ||
#![feature(box_syntax)] | ||
|
||
#[macro_use] | ||
extern crate log; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#![feature(nll, box_syntax)] | ||
#![feature(box_syntax)] | ||
|
||
#[macro_use] | ||
extern crate lazy_static; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
#![feature( | ||
nll, | ||
box_syntax, | ||
stdsimd, | ||
const_maybe_uninit_assume_init, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,11 +6,11 @@ | |
"repository": "https://github.com/Ameobea/web-synth", | ||
"author": "Casey Primozic <[email protected]>", | ||
"devDependencies": { | ||
"@babel/core": "^7.16.5", | ||
"@babel/core": "^7.18.13", | ||
"@babel/plugin-proposal-class-properties": "^7.16.5", | ||
"@babel/plugin-syntax-dynamic-import": "^7.8.3", | ||
"@babel/preset-react": "^7.16.5", | ||
"@babel/preset-typescript": "^7.16.5", | ||
"@babel/preset-react": "^7.18.6", | ||
"@babel/preset-typescript": "^7.18.6", | ||
"@types/chartist": "^0.11.1", | ||
"@types/d3": "^7.1.0", | ||
"@types/downloadjs": "^1.4.2", | ||
|
@@ -20,32 +20,32 @@ | |
"@typescript-eslint/parser": "^5.8.0", | ||
"@webpack-cli/serve": "^1.6.0", | ||
"babel-eslint": "^10.1.0", | ||
"babel-loader": "^8.2.3", | ||
"css-loader": "^6.5.1", | ||
"babel-loader": "^8.2.5", | ||
"css-loader": "^6.7.1", | ||
"cypress": "^9.2.0", | ||
"eslint": "^8.5.0", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-plugin-react": "^7.27.1", | ||
"eslint-plugin-react-hooks": "^4.3.0", | ||
"eslint": "^8.22.0", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-react": "^7.31.0", | ||
"eslint-plugin-react-hooks": "^4.6.0", | ||
"file-loader": "^6.2.0", | ||
"handlebars": "^4.7.7", | ||
"handlebars-loader": "^1.7.1", | ||
"html-webpack-plugin": "^5.5", | ||
"prettier": "^2.5.1", | ||
"prettier": "^2.7.1", | ||
"prettier-plugin-svelte": "^2.5.1", | ||
"sass-loader": "^12.4.0", | ||
"serve": "^13.0.2", | ||
"serve": "^14.0.1", | ||
"speed-measure-webpack-plugin": "^1.5.0", | ||
"style-loader": "^3.3.1", | ||
"svelte-loader": "^3.1.2", | ||
"svelte-preprocess": "^4.10.1", | ||
"svelte-loader": "^3.1.3", | ||
"svelte-preprocess": "^4.10.7", | ||
"svelte-subcomponent-preprocessor": "^0.0.1", | ||
"ts-loader": "^9.2.6", | ||
"typescript": "^4.5.4", | ||
"webpack": "^5.65.0", | ||
"webpack-bundle-analyzer": "^4.5.0", | ||
"webpack-cli": "^4.9.1", | ||
"webpack-dev-server": "^4.7" | ||
"ts-loader": "^9.3.1", | ||
"typescript": "^4.7.4", | ||
"webpack": "^5.74.0", | ||
"webpack-bundle-analyzer": "^4.6.1", | ||
"webpack-cli": "^4.10.0", | ||
"webpack-dev-server": "^4.10" | ||
}, | ||
"scripts": { | ||
"start": "webpack serve", | ||
|
@@ -60,6 +60,7 @@ | |
"@pixi/constants": "^6.2.1", | ||
"@pixi/core": "^6.2.1", | ||
"@pixi/display": "^6.2.1", | ||
"@pixi/extensions": "^6.5.2", | ||
"@pixi/graphics": "^6.2.1", | ||
"@pixi/interaction": "^6.2.1", | ||
"@pixi/math": "^6.2.1", | ||
|
@@ -73,7 +74,7 @@ | |
"@reduxjs/toolkit": "^1.7.1", | ||
"@sentry/react": "^6.16.1", | ||
"@sentry/tracing": "^6.16.1", | ||
"@types/ramda": "^0.27.61", | ||
"@types/ramda": "^0.28.15", | ||
"@types/react": "^17.0.37", | ||
"@types/react-dom": "^17.0.11", | ||
"@types/react-redux": "^7.1.20", | ||
|
@@ -85,25 +86,25 @@ | |
"dexie": "^3.2.0", | ||
"downloadjs": "^1.4.7", | ||
"funfix-core": "^7.0.1", | ||
"immutable": "^4.0.0", | ||
"immutable": "^4.1.0", | ||
"jantix": "^0.3.0", | ||
"litegraph.js": "^0.7.10", | ||
"node-sass": "^7.0.0", | ||
"node-sass": "^7.0.1", | ||
"path-browserify": "^1.0.1", | ||
"ramda": "^0.27.1", | ||
"ramda": "^0.28.0", | ||
"react": "next", | ||
"react-ace": "^9.5.0", | ||
"react-control-panel": ">=0.8.10", | ||
"react-dom": "next", | ||
"react-piano": "^3.1.3", | ||
"react-query": "^3.34.5", | ||
"react-query": "^3.39.2", | ||
"react-redux": "^7.2.6", | ||
"react-tippy": "^1.4.0", | ||
"react-window": "^1.8.6", | ||
"react-window": "^1.8.7", | ||
"redux": "^4.1.2", | ||
"reselect": "^4.1.5", | ||
"reselect": "^4.1.6", | ||
"showdown": "^1.9.1", | ||
"showdown-xss-filter": "^0.2.0", | ||
"svelte": "^3.44.3" | ||
"svelte": "^3.49.0" | ||
} | ||
} |
Oops, something went wrong.