2023-01-19 15:38:27 +00:00
|
|
|
# see https://stackoverflow.com/questions/4774054/reliable-way-for-a-bash-script-to-get-the-full-path-to-itself
|
|
|
|
THIS_SCRIPT="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
|
2022-10-13 22:00:16 +01:00
|
|
|
WASM_PROJECT=$THIS_SCRIPT/../../rust/automerge-wasm;
|
2022-03-09 10:41:14 -05:00
|
|
|
|
|
|
|
yarn --cwd $WASM_PROJECT install;
|
|
|
|
yarn --cwd $WASM_PROJECT build;
|
|
|
|
yarn --cwd $WASM_PROJECT test;
|