Skip to content

Commit

Permalink
test: revert and freeze wasm-pack module (#174)
Browse files Browse the repository at this point in the history
There's an issue with WASM builds and tests on the current 0.11.0
version of the `wasm-pack` Node.js module that isn't present in the
0.10.3 version.

Until that issue is fixed upstream, this PR reverts to and freezes at
the known working version.
  • Loading branch information
AaronFeickert authored Apr 5, 2023
1 parent 5a1ebf4 commit f6450fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
target: wasm32-unknown-unknown
override: true
- name: install wasm-pack
run: npm install -g wasm-pack
run: npm install -g wasm-pack@0.10.3
- name: make wasm
run: make wasm
- name: make wasm-node
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ path = "benches/mod.rs"
harness = false

[package.metadata.wasm-pack.profile.release]
wasm-opt = ["-Oz", "--enable-mutable-globals"]
wasm-opt = ["-Oz"]

0 comments on commit f6450fc

Please sign in to comment.