9 lines
133 B
Bash
Executable file
9 lines
133 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
wasm-pack build --target web --features wasm
|
|
cd reconcile-js
|
|
npm run build
|
|
cd ../examples/website
|
|
npm run start
|