Skip to content

Commit

Permalink
kimchi-bindings/js: removing offline for now
Browse files Browse the repository at this point in the history
  • Loading branch information
dannywillems committed Jan 28, 2025
1 parent e833286 commit 215c7c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/crypto/kimchi_bindings/js/node_js/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -euo pipefail

if [[ -z "${PLONK_WASM_NODEJS-}" ]]; then
export RUSTFLAGS="-C target-feature=+atomics,+bulk-memory,+mutable-globals -C link-arg=--no-check-features -C link-arg=--max-memory=4294967296"
wasm-pack build --target nodejs --out-dir ../js/node_js ../../wasm -- -Zbuild-std=std,panic_abort --features nodejs --offline
wasm-pack build --target nodejs --out-dir ../js/node_js ../../wasm -- -Zbuild-std=std,panic_abort --features nodejs
else
cp "$PLONK_WASM_NODEJS"/* -R .
fi
2 changes: 1 addition & 1 deletion src/lib/crypto/kimchi_bindings/js/web/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -euo pipefail

if [[ -z "${PLONK_WASM_WEB-}" ]]; then
export RUSTFLAGS="-C target-feature=+atomics,+bulk-memory,+mutable-globals -C link-arg=--no-check-features -C link-arg=--max-memory=4294967296"
wasm-pack build --target web --out-dir ../js/web ../../wasm -- --offline -Zbuild-std=std,panic_abort
wasm-pack build --target web --out-dir ../js/web ../../wasm -- -Zbuild-std=std,panic_abort
else
cp "$PLONK_WASM_WEB"/* -R .
fi

0 comments on commit 215c7c8

Please sign in to comment.