Fix npm run dev script
This commit is contained in:
parent
e92269053e
commit
9b7668f527
2 changed files with 13 additions and 4 deletions
|
@ -2,6 +2,15 @@
|
||||||
|
|
||||||
set -eu
|
set -eu
|
||||||
|
|
||||||
NODE_ENV=test npm run concurrently -- -k \
|
clientCommand="cd client && npm run ng -- serve --proxy-config proxy.config.json --hmr --configuration hmr --host 0.0.0.0 --disable-host-check --port 3000"
|
||||||
"cd client && npm run 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 npm start"
|
||||||
"npm run build:server && NODE_ENV=test npm start"
|
|
||||||
|
if [ ! -z ${1+x} ] && [ "$1" == "--skip-server" ]; then
|
||||||
|
NODE_ENV=test eval $clientCommand
|
||||||
|
else
|
||||||
|
NODE_ENV=test npm run concurrently -- -k \
|
||||||
|
"$clientCommand" \
|
||||||
|
"$serverCommand"
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -3,5 +3,5 @@
|
||||||
set -eu
|
set -eu
|
||||||
|
|
||||||
NODE_ENV=test npm run concurrently -- -k \
|
NODE_ENV=test npm run concurrently -- -k \
|
||||||
"npm run dev:client" \
|
"npm run dev:client -- --skip-server" \
|
||||||
"npm run dev:server"
|
"npm run dev:server"
|
||||||
|
|
Loading…
Reference in a new issue