]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - scripts/watch/server.sh
Fix For GitPod
[github/Chocobozzz/PeerTube.git] / scripts / watch / server.sh
1 #!/bin/sh
2
3 set -eu
4
5 # Copy locales
6 mkdir -p "./client/dist"
7 rm -rf "./client/dist/locale"
8 cp -r "./client/src/locale" "./client/dist/locale"
9
10 rm -rf "./dist"
11
12 mkdir "./dist"
13 cp "./tsconfig.json" "./dist"
14
15 npm run tsc -- --incremental --sourceMap
16 cp -r ./server/static ./server/assets ./dist/server
17
18 NODE_ENV=test npm run concurrently -- -k \
19 "npm run nodemon -- --delay 1 --watch ./dist dist/server" \
20 "npm run tsc -- --incremental --sourceMap --preserveWatchOutput -w"