aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/dev/server.sh
blob: a7fa88fbd880d9637bad92f4f1a400f9a0f47bef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh

set -eu

if [ ! -f "./client/dist/en-US/index.html" ]; then
  echo "client/dist/en-US/index.html does not exist, compile client files..."
  npm run build:client -- --light
fi

# 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

NODE_ENV=test npm run concurrently -- -k \
  "npm run nodemon -- --delay 1 --watch ./dist dist/server" \
  "npm run tsc -- --incremental --sourceMap --preserveWatchOutput -w"