13 lines
325 B
Bash
Raw Normal View History

#!/bin/sh
2018-10-06 20:18:50 +02:00
# 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/wasm_in_wasm.wasm --out-dir .
2018-03-22 21:15:21 -07:00
npm install
npm run serve