reconcile/scripts/build-website.sh

12 lines
152 B
Bash
Executable file

#!/bin/bash
set -e
wasm-pack build --target web --features wasm
cd reconcile-js
npm ci
npm run build
cd ../examples/website
npm ci
npm run build
cd -