mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-17 22:51:47 +03:00
16 lines
369 B
Bash
16 lines
369 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# For more coments about what's going on here, see the `hello_world` example
|
||
|
|
||
|
set -ex
|
||
|
cd "$(dirname $0)"
|
||
|
|
||
|
cargo +nightly build --target wasm32-unknown-unknown
|
||
|
|
||
|
cargo +nightly run --manifest-path ../../crates/cli/Cargo.toml \
|
||
|
--bin wasm-bindgen -- \
|
||
|
../../target/wasm32-unknown-unknown/debug/wasm_bindgen_paint.wasm --out-dir .
|
||
|
|
||
|
npm install
|
||
|
npm run serve
|