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)"
|
|
|
|
|
2018-10-28 20:25:39 +03:00
|
|
|
cargo build --target wasm32-unknown-unknown
|
2018-09-16 09:28:15 +03:00
|
|
|
|
2018-10-28 20:25:39 +03:00
|
|
|
cargo run --manifest-path ../../crates/cli/Cargo.toml \
|
2018-09-16 09:28:15 +03:00
|
|
|
--bin wasm-bindgen -- \
|
2018-09-21 02:20:42 +03:00
|
|
|
../../target/wasm32-unknown-unknown/debug/webgl.wasm --out-dir .
|
2018-09-16 09:28:15 +03:00
|
|
|
|
|
|
|
npm install
|
|
|
|
npm run serve
|