2019-12-17 09:33:58 -05:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
2019-12-18 09:40:42 -05:00
|
|
|
if [ ! -z ${1+x} ]; then
|
2019-12-18 05:01:59 -05:00
|
|
|
clientCommand="npm run build:client -- $1"
|
|
|
|
else
|
|
|
|
clientCommand="npm run build:client"
|
|
|
|
fi
|
|
|
|
|
2019-12-18 09:40:42 -05:00
|
|
|
npm run concurrently -- --raw \
|
2019-12-18 05:01:59 -05:00
|
|
|
"$clientCommand" \
|
2019-12-17 09:33:58 -05:00
|
|
|
"npm run build:server"
|