This commit is contained in:
Eugenio Romano
2020-07-17 15:59:03 +01:00
parent f75151d6c6
commit 59c2cb7df6
7 changed files with 16 additions and 15 deletions

View File

@@ -9,10 +9,10 @@ echo "====== Build ======"
if [ "$CI" = "true" ]; then
echo "Building process-services for production"
npm run ng -- build process-services --prod || exit 1
nx build process-services --prod || exit 1
else
echo "Building process-services for development"
npm run ng -- build process-services || exit 1
nx build process-services || exit 1
fi
echo "====== Build style ======"