commit 1dc59d3ea11042317891142c69303b1fbc340ea4 parent 6557685a7e23305071c1dd714e15d892fbffe274 Author: Vetle Haflan <vetle@haflan.dev> Date: Sat, 9 Oct 2021 00:17:42 +0200 Build pwa-svelte-wasm with tinygo if it's available Reduces final .wasm by almost 90%! Diffstat:
M | web/pwa-svelte-wasm/build.sh | | | 13 | +++++++++++-- |
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/web/pwa-svelte-wasm/build.sh b/web/pwa-svelte-wasm/build.sh @@ -1,3 +1,12 @@ -cp "$(go env GOROOT)/misc/wasm/wasm_exec.js" public/wasm_exec.js -GOOS=js GOARCH=wasm go build -o public/app.wasm . +#!/bin/bash + +if [ -z "$(which tinygo)" ]; then + echo "Warning: tinygo not found! Building .wasm with go" + cp "$(go env GOROOT)/misc/wasm/wasm_exec.js" public/wasm_exec.js + GOOS=js GOARCH=wasm go build -o public/app.wasm . & +else + echo "Building .wasm with tinygo" + cp "$(tinygo env TINYGOROOT)/targets/wasm_exec.js" public/wasm_exec.js + tinygo build -o public/app.wasm -target wasm . & +fi npm run build