mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-12 19:13:10 +03:00
f24828a16b
Returns `Option<Window>` and can be used as a convenience to get a handle to the global `window` object.
14 lines
336 B
Bash
Executable File
14 lines
336 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# For more coments about what's going on here, see the `hello_world` example
|
|
|
|
set -ex
|
|
|
|
cargo +nightly build --target wasm32-unknown-unknown
|
|
cargo +nightly run --manifest-path ../../crates/cli/Cargo.toml \
|
|
--bin wasm-bindgen -- \
|
|
../../target/wasm32-unknown-unknown/debug/fetch.wasm --out-dir .
|
|
|
|
npm install
|
|
npm run serve
|