From 2a8c1c3382d398b1bb9029f29358d42cc653f5ae Mon Sep 17 00:00:00 2001 From: dan Date: Tue, 22 Jul 2025 06:29:12 +0000 Subject: [PATCH] fix(harness): add custom wasm-pack to build script (#940) --- crates/harness/build.wasm.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/harness/build.wasm.sh b/crates/harness/build.wasm.sh index 3ab461e98..0af1e97a3 100755 --- a/crates/harness/build.wasm.sh +++ b/crates/harness/build.wasm.sh @@ -3,6 +3,9 @@ # Ensure the script runs in the folder that contains this script cd "$(dirname "$0")" +# A specific version of `wasm-pack` must be installed to build the WASM binary +cargo install --git https://github.com/rustwasm/wasm-pack.git --rev 32e52ca + rustup run nightly \ wasm-pack build executor \ --profile wasm \