#!/bin/bash if ! which npm &>/dev/null; then echo 'Please install node.js 10.x' else
npm install
npm audit fix
./node_modules/@angular/cli/bin/ng build --prod
fi