reconcile/scripts/dev-website.sh
2025-06-24 22:05:57 +01:00

14 lines
230 B
Bash
Executable file

#!/bin/bash
set -e
rm -rf pkg
wasm-pack build --target web --features wasm
cp -R pkg/reconcile.js examples/website/
cp -R pkg/reconcile_bg.wasm examples/website/
cd examples/website/
python3 -m http.server $1 --bind 0.0.0.0