mirror of
https://github.com/fluencelabs/jsonpath
synced 2025-04-03 07:21:06 +00:00
12 lines
193 B
Bash
12 lines
193 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
cd ./www && \
|
||
|
rm -rf dist && \
|
||
|
rm -rf node_modules && \
|
||
|
npm install && \
|
||
|
cd .. && \
|
||
|
wasm-pack build --target=$1 --out-dir=www/node_modules/rs-jsonpath
|
||
|
|