1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-06 03:50:26 +02:00

Reduce dev commands RAM usage

This commit is contained in:
Chocobozzz 2020-01-22 10:00:38 +01:00
parent 11c4e36066
commit 36619ac8f5
No known key found for this signature in database
GPG key ID: 583A612D890159BE
4 changed files with 9 additions and 9 deletions

View file

@ -20,6 +20,6 @@ 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"
NODE_ENV=test node node_modules/.bin/concurrently -k \
"node_modules/.bin/nodemon --delay 1 --watch ./dist dist/server" \
"node_modules/.bin/tsc --incremental --sourceMap --preserveWatchOutput -w"