mirror of https://github.com/Chocobozzz/PeerTube
6 lines
174 B
Bash
6 lines
174 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
NODE_ENV=test concurrently \
|
||
|
"npm run tsc -- --sourceMap && npm run nodemon -- --delay 2 --watch ./dist dist/server" \
|
||
|
"npm run tsc -- --sourceMap -w"
|