2021-05-10 11:25:34 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
## requires wasm-pack
|
|
|
|
## > curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
|
|
|
|
|
|
|
|
(
|
|
|
|
cd ../..;
|
|
|
|
mkdir -p ./avm/client/wasm || exit;
|
|
|
|
wasm-pack build ./air-interpreter --no-typescript --release -d ../avm/client/wasm
|
|
|
|
)
|
|
|
|
|
|
|
|
cat << EOF > ./src/wasm.js
|
|
|
|
// auto-generated
|
|
|
|
|
|
|
|
module.exports = "$(base64 -w0 wasm/air_interpreter_client_bg.wasm)";
|
|
|
|
EOF
|
2021-08-03 20:13:47 +00:00
|
|
|
|
|
|
|
callserviceimpl=$(cat wasm/air_interpreter_client_bg.js | grep -o '__wbg_callserviceimpl_\w*')
|
|
|
|
getcurrentpeeridimpl=$(cat wasm/air_interpreter_client_bg.js | grep -o '__wbg_getcurrentpeeridimpl_\w*')
|
|
|
|
|
|
|
|
cat << EOF > ./src/importObject.ts
|
|
|
|
// auto-generated
|
|
|
|
|
|
|
|
export const __wbg_callserviceimpl = "$callserviceimpl";
|
|
|
|
export const __wbg_getcurrentpeeridimpl = "$getcurrentpeeridimpl";
|
|
|
|
EOF
|