mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-16 02:00:51 +00:00
13 lines
336 B
Bash
Executable File
13 lines
336 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# For more comments about what's going on here, see the `hello_world` example
|
|
|
|
set -ex
|
|
|
|
cargo build --target wasm32-unknown-unknown
|
|
cargo run --manifest-path ../../crates/cli/Cargo.toml \
|
|
--bin wasm-bindgen -- \
|
|
../../target/wasm32-unknown-unknown/debug/request_animation_frame.wasm --out-dir .
|
|
npm install
|
|
npm run serve
|