mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-12 11:11:12 +03:00
cfa4aa0e3e
Everything should be stable now so let's test it!
13 lines
334 B
Bash
Executable File
13 lines
334 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 --release
|
|
cargo run --manifest-path ../../crates/cli/Cargo.toml \
|
|
--bin wasm-bindgen -- \
|
|
../../target/wasm32-unknown-unknown/release/julia_set.wasm --out-dir .
|
|
npm install
|
|
npm run serve
|