mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 19:42:24 +02:00
Fix npm run dev
This commit is contained in:
parent
302cb3f92e
commit
99ae9d3a9e
3 changed files with 6 additions and 4 deletions
|
@ -5,7 +5,7 @@ set -eu
|
|||
clientCommand="cd client && node node_modules/.bin/ng serve --proxy-config proxy.config.json --hmr --configuration hmr --host 0.0.0.0 --disable-host-check --port 3000"
|
||||
serverCommand="npm run build:server && NODE_ENV=test node dist/server"
|
||||
|
||||
if [ ! -z ${1+x} ] && [ "$1" == "--skip-server" ]; then
|
||||
if [ ! -z ${1+x} ] && [ "$1" = "--skip-server" ]; then
|
||||
NODE_ENV=test eval $clientCommand
|
||||
else
|
||||
NODE_ENV=test node node_modules/.bin/concurrently -k \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue