mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-07-15 04:21:31 +00:00
crates
examples
add
asm.js
char
closures
comments
console_log
dom
hello_world
import_js
math
no_modules
src
.gitignore
Cargo.toml
README.md
build.sh
index.html
performance
smorgasboard
wasm-in-wasm
README.md
guide
releases
src
tests
.appveyor.yml
.eslintrc.js
.gitignore
.travis.yml
CHANGELOG.md
CONTRIBUTING.md
Cargo.toml
LICENSE-APACHE
LICENSE-MIT
README.md
package-lock.json
package.json
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
|