Skip to content

Commit

Permalink
Bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Ameobea committed Aug 25, 2022
1 parent 660994c commit b446b23
Show file tree
Hide file tree
Showing 19 changed files with 2,271 additions and 2,008 deletions.
6 changes: 5 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
"typescript.preferences.importModuleSpecifier": "non-relative",
"[markdown]": {
"editor.quickSuggestions": true,
"editor.quickSuggestions": {
"comments": "on",
"strings": "on",
"other": "on"
},
"editor.formatOnSave": false
}
}
2 changes: 2 additions & 0 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ build-all:
just build-docs

run:
#!/bin/bash

just remove-annoying-litegraph-warning

cd engine \
Expand Down
26 changes: 13 additions & 13 deletions engine/Cargo.lock

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

20 changes: 20 additions & 0 deletions engine/build.sh
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
2 changes: 1 addition & 1 deletion engine/engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "0.1.0"
crate-type = ["cdylib", "rlib"]

[dependencies]
wasm-bindgen = { version = "=0.2.78", features = ["nightly"] }
wasm-bindgen = { version = "=0.2.82" }
rand = "0.7"
rand_pcg = "0.2.1"
miniserde = "0.1.16"
Expand Down
2 changes: 1 addition & 1 deletion engine/engine/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(box_syntax, test, thread_local, nll)]
#![feature(box_syntax, test, thread_local)]
#![allow(clippy::float_cmp, clippy::needless_range_loop, clippy::manual_memcpy)]

extern crate wasm_bindgen;
Expand Down
2 changes: 1 addition & 1 deletion engine/midi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ futures = "0.3"
log = { version = "0.4", features = ["release_max_level_off"] }
miniserde = "0.1.16"
js-sys = "0.3"
wasm-bindgen = "=0.2.78"
wasm-bindgen = "=0.2.82"
wasm-bindgen-futures = "0.4"

polysynth = { path = "../polysynth", default_features = false }
Expand Down
2 changes: 1 addition & 1 deletion engine/midi/src/lib.rs
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;
Expand Down
2 changes: 1 addition & 1 deletion engine/note_container/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
crate-type = ["cdylib", "rlib"]

[dependencies]
wasm-bindgen = "=0.2.78"
wasm-bindgen = "=0.2.82"
# Disable logging staticly in release, making all log calls into no-ops
log = { version = "0.4", features = ["release_max_level_off"] }
common = { path = "../common" }
Expand Down
2 changes: 1 addition & 1 deletion engine/polysynth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ crate-type = ["cdylib", "rlib"]
# Disable logging staticly in release, making all log calls into no-ops
log = { version = "0.4", features = ["release_max_level_off"] }
uuid = { version = "0.8" }
wasm-bindgen = { version = "=0.2.78", optional = true }
wasm-bindgen = { version = "=0.2.82", optional = true }
common = { path = "../common" }
wbg_logging = { path = "../wbg_logging", optional = true }
js-sys = "^0.3.36"
Expand Down
2 changes: 1 addition & 1 deletion engine/polysynth/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! Synth state management. Handles keeping track of what each voice of each polyphonic synth
//! is playing and passing the correct commands through to the WebAudio synths.
#![feature(nll, box_syntax)]
#![feature(box_syntax)]

#[cfg(feature = "wasm-bindgen")]
#[macro_use]
Expand Down
2 changes: 1 addition & 1 deletion engine/spectrum_viz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
lazy_static = "1.4.0"
palette = "0.5"
wasm-bindgen = "=0.2.78"
wasm-bindgen = "=0.2.82"
# Disable logging staticly in release, making all log calls into no-ops
log = { version = "0.4", features = ["release_max_level_off"] }
common = { path = "../common" }
Expand Down
2 changes: 1 addition & 1 deletion engine/spectrum_viz/src/lib.rs
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;
Expand Down
2 changes: 1 addition & 1 deletion engine/wav_decoder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
crate-type = ["cdylib", "rlib"]

[dependencies]
wasm-bindgen = "=0.2.78"
wasm-bindgen = "=0.2.82"
hound = "3.4"
common = { path = "../common" }
wbg_logging = { path = "../wbg_logging" }
Expand Down
2 changes: 1 addition & 1 deletion engine/waveform_renderer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
crate-type = ["cdylib", "rlib"]

[dependencies]
wasm-bindgen = "=0.2.78"
wasm-bindgen = "=0.2.82"
common = { path = "../common" }
wbg_logging = { path = "../wbg_logging" }
log = { version = "0.4", features = ["release_max_level_off"] }
1 change: 0 additions & 1 deletion engine/wavetable/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#![feature(
nll,
box_syntax,
stdsimd,
const_maybe_uninit_assume_init,
Expand Down
2 changes: 1 addition & 1 deletion engine/wbg_logging/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ edition = "2021"
console_error_panic_hook = "0.1.6"
# Disable logging staticly in release, making all log calls into no-ops
log = { version = "0.4", features = ["release_max_level_off"] }
wasm-bindgen = { version = "=0.2.78", features = ["nightly"] }
wasm-bindgen = { version = "=0.2.82" }
wasm-logger = "0.2"
55 changes: 28 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand All @@ -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"
}
}
Loading

0 comments on commit b446b23

Please sign in to comment.