aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/watch/server.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/watch/server.sh')
-rwxr-xr-xscripts/watch/server.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/scripts/watch/server.sh b/scripts/watch/server.sh
deleted file mode 100755
index 2e3231865..000000000
--- a/scripts/watch/server.sh
+++ /dev/null
@@ -1,20 +0,0 @@
1#!/bin/sh
2
3set -eu
4
5# Copy locales
6mkdir -p "./client/dist"
7rm -rf "./client/dist/locale"
8cp -r "./client/src/locale" "./client/dist/locale"
9
10rm -rf "./dist"
11
12mkdir "./dist"
13cp "./tsconfig.json" "./dist"
14
15npm run tsc -- --incremental --sourceMap
16cp -r ./server/static ./server/assets ./dist/server
17
18NODE_ENV=test npm run concurrently -- -k \
19 "npm run nodemon -- --delay 1 --watch ./dist dist/server" \
20 "npm run tsc -- --incremental --sourceMap --preserveWatchOutput -w"