mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-22 05:00:53 +00:00
11 lines
312 B
Bash
11 lines
312 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# For more coments about what's going on here, see the `hello_world` example
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
cargo +nightly build --target wasm32-unknown-unknown
|
||
|
cargo +nightly run --manifest-path ../../crates/cli/Cargo.toml \
|
||
|
--bin wasm-bindgen -- \
|
||
|
../../target/wasm32-unknown-unknown/debug/webaudio.wasm --out-dir .
|