mirror of
https://github.com/fluencelabs/aquavm
synced 2024-12-14 03:25:39 +00:00
4a4fc0889b
Co-authored-by: folex <0xdxdy@gmail.com> Co-authored-by: Pavel Murygin <pavel.murygin@gmail.com>
13 lines
348 B
PowerShell
13 lines
348 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('./wasm/air_interpreter_client_bg.wasm'))
|
|
|
|
$data = "// auto-generated
|
|
|
|
module.exports = `"${base64string}`""
|
|
|
|
$data | Out-File "./src/wasm.js"
|
|
|