ファイル
nizika_video/scripts/build/index.sh
T
2024-07-15 09:14:04 +09:00

13 行
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