You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
225 B
Bash
13 lines
225 B
Bash
#!/bin/bash
|
|||
|
|||
set -eu
|
|||
|
|||
npm run build:server
|
|||
|
|||
# Angular does not support project references, it's the reason why we can't builds concurrently
|
|||
if [ ! -z ${1+x} ]; then
|
|||
npm run build:client -- $1
|
|||
else
|
|||
npm run build:client
|
|||
fi
|