bitque/web/scripts/dev.sh

33 lines
714 B
Bash
Raw Normal View History

#!/usr/bin/env bash
RSASS_PATH=$(command -v rsass)
2021-04-15 22:32:05 +02:00
if [[ "${RSASS_PATH}" == "" ]]; then
cargo install rsass --features=commandline
fi
WASM_PACK_PATH=$(command -v wasm-pack)
2021-04-15 22:32:05 +02:00
if [[ "${WASM_PACK_PATH}" == "" ]]; then
cargo install wasm-pack
fi
2020-11-25 20:14:52 +01:00
export PROJECT_ROOT=$(git rev-parse --show-toplevel)
2021-10-05 14:34:20 +02:00
export CLIENT_ROOT=${PROJECT_ROOT}/web
2020-11-25 20:14:52 +01:00
export HI_ROOT=${PROJECT_ROOT}/highlight/jirs-highlight
export MODE=force
export BUILD_TYPE=--dev
2021-10-05 14:34:20 +02:00
echo $PROJECT_ROOT
echo $CLIENT_ROOT
2020-10-18 10:35:41 +02:00
cd ${CLIENT_ROOT}
2020-10-18 10:35:41 +02:00
. .env
2020-11-25 20:14:52 +01:00
cargo watch \
2021-10-05 14:34:20 +02:00
-i ${CLIENT_ROOT}/src/location.rs \
2020-11-25 20:14:52 +01:00
-s ${CLIENT_ROOT}/scripts/run-wasm-pack.sh \
-w ${CLIENT_ROOT}/src \
-w ${CLIENT_ROOT}/Cargo.toml \
2021-10-05 14:34:20 +02:00
-w ${CLIENT_ROOT}/static \
-w ${CLIENT_ROOT}/js