mirror of
https://github.com/fluencelabs/jsonpath
synced 2025-03-27 04:11:03 +00:00
12 lines
225 B
Bash
Executable File
12 lines
225 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd ./www && \
|
|
rm -rf dist && \
|
|
rm -rf node_modules && \
|
|
npm install && \
|
|
cd .. && \
|
|
wasm-pack build --target=$1 && \
|
|
cd pkg && npm link && \
|
|
cd ../www && npm link jsonpath-wasm |