-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |