Skip to content

Commit

Permalink
Fix Bezier-rs web demos failing to run wasm-opt in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Keavon committed Oct 27, 2024
1 parent 9eeefaa commit 4df7803
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion website/other/bezier-rs-demos/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ demangle-name-section = true
dwarf-debug-info = true

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

[package.metadata.wasm-pack.profile.release.wasm-bindgen]
debug-js-glue = false
Expand Down
1 change: 1 addition & 0 deletions website/other/build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/sh
set -e # Exit with nonzero exit code if any individual command fails throughout the script

echo 📁 Create output directory in 'website/other/dist'
cd website/other
Expand Down

0 comments on commit 4df7803

Please sign in to comment.