mirror of
https://github.com/fluencelabs/aquavm
synced 2024-12-13 11:15:33 +00:00
12 lines
358 B
PowerShell
12 lines
358 B
PowerShell
|
|
New-Item -ItemType Directory -Force -Path ./wasm
|
|
wasm-pack build ../../air-interpreter --no-typescript --release -d ../avm/client/wasm
|
|
|
|
$base64string = [Convert]::ToBase64String([IO.File]::ReadAllBytes('./avm/client/wasm/air_interpreter_client_bg.wasm'))
|
|
|
|
$data = "// auto-generated
|
|
|
|
module.exports = `"${base64string}`""
|
|
|
|
$data | Out-File "./src/wasm.js"
|