2022-04-07 15:34:34 +00:00
|
|
|
#!/usr/bin/env bash
|
2020-12-19 20:30:51 +00:00
|
|
|
set -eu
|
2021-05-09 11:28:24 +00:00
|
|
|
script_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
|
|
|
|
cd "$script_path/.."
|
2020-12-19 20:30:51 +00:00
|
|
|
|
|
|
|
# Pre-requisites:
|
|
|
|
rustup target add wasm32-unknown-unknown
|
2021-12-28 20:30:36 +00:00
|
|
|
cargo install wasm-bindgen-cli
|
2021-02-28 18:51:22 +00:00
|
|
|
cargo update -p wasm-bindgen
|