aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/watch/server.sh
blob: badbf3da0dacf9c11a1212c47c3732b11cffe688 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -eu

# Copy locales
mkdir -p "./client/dist"
rm -r "./client/dist/locale"
cp -r "./client/src/locale/target" "./client/dist/locale"

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