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