created script for beta and production builds

This commit is contained in:
Konstantinos Spyrou 2021-07-22 10:07:42 +00:00
parent 17a888cff2
commit c7e7a28408
1 changed files with 3 additions and 1 deletions

View File

@ -5,7 +5,9 @@
"ng": "ng",
"start": "ng serve --proxy-config proxy.conf.json",
"start:proxy": "ng serve --proxy-config proxy.conf.json",
"build": "rm -rf dist; ng build --configuration production",
"build": "ng build --output-hashing=all",
"build:beta": "ng build --configuration beta --output-hashing=all",
"build:prod": "ng build --configuration production --output-hashing=all",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"