2020-02-19 01:56:24 -06:00
|
|
|
#!/bin/bash
|
2018-03-27 03:35:12 -05:00
|
|
|
|
|
|
|
set -eu
|
2017-06-11 04:29:03 -05:00
|
|
|
|
2019-11-29 06:36:40 -06:00
|
|
|
if [ ! -f "./client/dist/en-US/index.html" ]; then
|
2020-02-19 02:14:28 -06:00
|
|
|
if [ -z ${1+x} ] || [ "$1" != "--skip-client" ]; then
|
|
|
|
echo "client/dist/en-US/index.html does not exist, compile client files..."
|
|
|
|
npm run build:client -- --light
|
|
|
|
fi
|
2017-06-11 04:29:03 -05:00
|
|
|
fi
|
|
|
|
|
2019-12-17 08:33:58 -06:00
|
|
|
# Copy locales
|
|
|
|
mkdir -p "./client/dist"
|
|
|
|
rm -rf "./client/dist/locale"
|
|
|
|
cp -r "./client/src/locale" "./client/dist/locale"
|
|
|
|
|
|
|
|
rm -rf "./dist"
|
|
|
|
|
|
|
|
mkdir "./dist"
|
|
|
|
cp "./tsconfig.json" "./dist"
|
|
|
|
|
|
|
|
npm run tsc -- --incremental --sourceMap
|
|
|
|
cp -r ./server/static ./server/assets ./dist/server
|
|
|
|
|
2020-01-22 03:00:38 -06:00
|
|
|
NODE_ENV=test node node_modules/.bin/concurrently -k \
|
|
|
|
"node_modules/.bin/nodemon --delay 1 --watch ./dist dist/server" \
|
|
|
|
"node_modules/.bin/tsc --incremental --sourceMap --preserveWatchOutput -w"
|