mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-28 14:27:36 +03:00
13 lines
282 B
Bash
Executable File
13 lines
282 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
cargo +nightly build --target wasm32-unknown-unknown
|
|
|
|
cargo +nightly run --manifest-path ../../crates/cli/Cargo.toml \
|
|
--bin wasm-bindgen -- \
|
|
--no-modules \
|
|
../../target/wasm32-unknown-unknown/debug/no_modules.wasm --out-dir .
|
|
|
|
python -m SimpleHTTPServer
|