mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-21 20:50:51 +00:00
13 lines
282 B
Bash
13 lines
282 B
Bash
|
#!/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
|