From 13b522f6a0e6beb6edce57d0378ee79420532109 Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Mon, 6 Jul 2026 20:40:48 +0000 Subject: [PATCH] fix missing dist dir make issue --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 65e6ab5..b85912d 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,7 @@ build: clean @echo "======================== Building Binary =======================" + mkdir -p dist cp wfa.js dist/wfa.js GOOS=js GOARCH=wasm CGO_ENABLED=0 tinygo build -panic=trap -no-debug -opt=s -target=wasm -o dist/wfa.wasm .