Skip to content

Commit

Permalink
bump wasm packages too
Browse files Browse the repository at this point in the history
  • Loading branch information
Pistonight committed May 2, 2024
1 parent 99b1def commit 68356d9
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

16 changes: 9 additions & 7 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,16 @@ tasks:

check:rs:
deps: [base:grammar]
vars:
CLIPPY_FLAGS: -D warnings -D clippy::todo -A clippy::empty_docs
cmds:
- cargo clippy --package compiler-macros --all-targets -- -D warnings -D clippy::todo
- cargo clippy --package compiler-base --features native --all-targets -- -D warnings -D clippy::todo
- cargo clippy --package compiler-base --features wasm --all-targets -- -D warnings -D clippy::todo
- cargo clippy --package compiler-core --features native --all-targets -- -D warnings -D clippy::todo
- cargo clippy --package compiler-core --features wasm --all-targets -- -D warnings -D clippy::todo
- cargo clippy --package compiler-wasm --all-targets -- -D warnings -D clippy::todo
- cargo clippy --package celery --all-targets -- -D warnings -D clippy::todo
- cargo clippy --package compiler-macros --all-targets -- {{.CLIPPY_FLAGS}}
- cargo clippy --package compiler-base --features native --all-targets -- {{.CLIPPY_FLAGS}}
- cargo clippy --package compiler-base --features wasm --all-targets -- {{.CLIPPY_FLAGS}}
- cargo clippy --package compiler-core --features native --all-targets -- {{.CLIPPY_FLAGS}}
- cargo clippy --package compiler-core --features wasm --all-targets -- {{.CLIPPY_FLAGS}}
- cargo clippy --package compiler-wasm --all-targets -- {{.CLIPPY_FLAGS}}
- cargo clippy --package celery --all-targets -- {{.CLIPPY_FLAGS}}
- cargo fmt --check

fix:rs:
Expand Down
6 changes: 3 additions & 3 deletions compiler-base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ thiserror = "1.0.51"

# wasm dependencies
tsify = { version = "0.4.5", default-features = false, features = ["js"], optional = true }
wasm-bindgen = { version = "0.2.89", optional = true }
wasm-bindgen-futures = { version = "0.4.39", optional = true }
wasm-bindgen = { version = "0.2.92", optional = true }
wasm-bindgen-futures = { version = "0.4.41", optional = true }
web-sys = { version = "0.3.66", features = ["WorkerGlobalScope"], optional = true }
js-sys = { version = "0.3.66", optional = true }
serde-wasm-bindgen = { version = "0.6.3", optional = true }
serde-wasm-bindgen = { version = "0.6.5", optional = true }
serde = { version = "1.0.196", features = ["derive"] }
uni-path = "1.51.1"
serde_json = "1.0.113"
Expand Down
6 changes: 3 additions & 3 deletions compiler-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ default-features = false
[dependencies]
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.113"
serde-wasm-bindgen = "0.5.0"
wasm-bindgen = "0.2.87"
wasm-bindgen-futures = "0.4.37"
serde-wasm-bindgen = "0.6.5"
wasm-bindgen = "0.2.92"
wasm-bindgen-futures = "0.4.41"
js-sys = "0.3.64"
log = { version = "0.4.20", features = ["std"] }
base64 = "0.21.7"
Expand Down

0 comments on commit 68356d9

Please sign in to comment.