]>
Commit | Line | Data |
---|---|---|
302cb3f9 | 1 | #!/bin/bash |
c026a2e6 C |
2 | |
3 | set -eu | |
4 | ||
e43ed96e | 5 | if [ ! -z ${1+x} ]; then |
9f0327ae C |
6 | clientCommand="npm run build:client -- $1" |
7 | else | |
8 | clientCommand="npm run build:client" | |
9 | fi | |
10 | ||
e43ed96e | 11 | npm run concurrently -- --raw \ |
9f0327ae | 12 | "$clientCommand" \ |
c026a2e6 | 13 | "npm run build:server" |