diff options
Diffstat (limited to 'scripts/dev/client.sh')
-rwxr-xr-x | scripts/dev/client.sh | 15 |
1 files changed, 12 insertions, 3 deletions
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 @@ | |||
2 | 2 | ||
3 | set -eu | 3 | set -eu |
4 | 4 | ||
5 | NODE_ENV=test npm run concurrently -- -k \ | 5 | 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" |
6 | "cd client && npm run ng -- serve --proxy-config proxy.config.json --hmr --configuration hmr --host 0.0.0.0 --disable-host-check --port 3000" \ | 6 | serverCommand="npm run build:server && NODE_ENV=test npm start" |
7 | "npm run build:server && NODE_ENV=test npm start" | 7 | |
8 | if [ ! -z ${1+x} ] && [ "$1" == "--skip-server" ]; then | ||
9 | NODE_ENV=test eval $clientCommand | ||
10 | else | ||
11 | NODE_ENV=test npm run concurrently -- -k \ | ||
12 | "$clientCommand" \ | ||
13 | "$serverCommand" | ||
14 | fi | ||
15 | |||
16 | |||