diff --git a/examples/node_and_browser/build.sh b/examples/node_and_browser/build.sh index c40e2f999cad..12b5b9456d5d 100644 --- a/examples/node_and_browser/build.sh +++ b/examples/node_and_browser/build.sh @@ -1,19 +1,19 @@ -#!/bin/sh - -set -ex - -# Build the `hello_world.wasm` file using Cargo/rustc -cargo +nightly build --target wasm32-unknown-unknown - -# Run the `wasm-bindgen` CLI tool to postprocess the wasm file emitted by the -# Rust compiler to emit the JS support glue that's necessary -# -# Here we're using the version of the CLI in this repository, but for external -# usage you'd use the commented out version below -cargo +nightly run --manifest-path ../../crates/cli/Cargo.toml --bin wasm-bindgen -- ../../target/wasm32-unknown-unknown/debug/node_and_browser.wasm --out-dir . --both -# wasm-bindgen ../../target/wasm32-unknown-unknown/hello_world.wasm --out-dir . - -# Finally, package everything up using Webpack and start a server so we can -# browse the result -npm install -npm run serve +#!/bin/sh + +set -ex + +# Build the `hello_world.wasm` file using Cargo/rustc +cargo +nightly build --target wasm32-unknown-unknown + +# Run the `wasm-bindgen` CLI tool to postprocess the wasm file emitted by the +# Rust compiler to emit the JS support glue that's necessary +# +# Here we're using the version of the CLI in this repository, but for external +# usage you'd use the commented out version below +cargo +nightly run --manifest-path ../../crates/cli/Cargo.toml --bin wasm-bindgen -- ../../target/wasm32-unknown-unknown/debug/node_and_browser.wasm --out-dir . --both +# wasm-bindgen ../../target/wasm32-unknown-unknown/hello_world.wasm --out-dir . + +# Finally, package everything up using Webpack and start a server so we can +# browse the result +npm install +npm run serve