From 9b7668f527fce8981f4684ed0459b62e740b4b82 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 7 Jan 2020 16:53:55 +0100 Subject: Fix npm run dev script --- scripts/dev/client.sh | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'scripts/dev/client.sh') diff --git a/scripts/dev/client.sh b/scripts/dev/client.sh index d6669ed78..cdcf29ef2 100755 --- a/scripts/dev/client.sh +++ b/scripts/dev/client.sh @@ -2,6 +2,15 @@ set -eu -NODE_ENV=test npm run concurrently -- -k \ - "cd client && npm run ng -- serve --proxy-config proxy.config.json --hmr --configuration hmr --host 0.0.0.0 --disable-host-check --port 3000" \ - "npm run build:server && NODE_ENV=test npm start" +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" +serverCommand="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 + + -- cgit v1.2.3