* Use stable rust * Add From impls * Revert to nightly * Improve dev env & CI setup * Update lock * Add thiserror * Add diff error * Fix tests * Lint * Rename NumberOrString * Format * Fix lint script
14 lines
196 B
Bash
Executable file
14 lines
196 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
which wasm-pack || cargo install wasm-pack
|
|
wasm-pack build --target web --features wasm
|
|
|
|
cd reconcile-js
|
|
npm ci
|
|
npm run build
|
|
cd ../examples/website
|
|
npm ci
|
|
npm run build
|
|
cd -
|