]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - scripts/watch/server.sh
Add warning regarding transcoding
[github/Chocobozzz/PeerTube.git] / scripts / watch / server.sh
CommitLineData
0e4ffb4b
LA
1#!/bin/sh
2
3set -eu
66dd264f 4
e945b184
C
5# Copy locales
6mkdir -p "./client/dist"
7rm -r "./client/dist/locale"
8cp -r "./client/src/locale/target" "./client/dist/locale"
9
4771e000 10NODE_ENV=test concurrently -k \
66dd264f 11 "npm run tsc -- --sourceMap && npm run nodemon -- --delay 2 --watch ./dist dist/server" \
cc1561f9 12 "npm run tsc -- --sourceMap --preserveWatchOutput -w"