wasm-bindgen/examples/webgl/build.sh

16 lines
339 B
Bash
Raw Normal View History

2018-09-16 09:28:15 +03:00
#!/bin/sh
2018-10-06 21:18:50 +03:00
# For more comments about what's going on here, see the `hello_world` example
2018-09-16 09:28:15 +03:00
set -ex
cd "$(dirname $0)"
cargo build --target wasm32-unknown-unknown
2018-09-16 09:28:15 +03:00
cargo run --manifest-path ../../crates/cli/Cargo.toml \
2018-09-16 09:28:15 +03:00
--bin wasm-bindgen -- \
../../target/wasm32-unknown-unknown/debug/webgl.wasm --out-dir .
2018-09-16 09:28:15 +03:00
npm install
npm run serve