Validate config improvements (#6837)

* validate config

* fix

* fix
This commit is contained in:
Eugenio Romano
2021-03-22 14:02:05 +00:00
committed by GitHub
parent 5c55c7ed13
commit d35ba2eedb
3 changed files with 18 additions and 20 deletions
+5 -5
View File
@@ -35,12 +35,12 @@
"stylelint": "stylelint ./**/*.scss --config stylelint-config.json",
"04": "echo -------------------------------------------- Demo Shell -----------------------------------------------",
"04s": "",
"start": "npm run validate-config && concurrently \"ng serve demoshell --open\" \"npm run style:dev -- --watch >&-\" ",
"start:prod": "npm run validate-config && ng serve demoshell --prod --open",
"build": "npm run validate-config && npm run style:dev && ng build demoshell",
"build:prod": "npm run validate-config && node --max-old-space-size=12000 node_modules/@angular/cli/bin/ng build demoshell --prod",
"start": "concurrently \"ng serve demoshell --open\" \"npm run style:dev -- --watch >&-\" ",
"start:prod": "ng serve demoshell --prod --open",
"build": "npm run style:dev && ng build demoshell",
"build:prod": "node --max-old-space-size=12000 node_modules/@angular/cli/bin/ng build demoshell --prod",
"style:dev": "npm run webpack -- --config ./lib/config/webpack.style.js --progress --profile --bail",
"test": "npm run validate-config && ng test demoshell --watch=false",
"test": "ng test demoshell --watch=false",
"05": "echo -------------------------------------------- E2e -----------------------------------------------",
"05s": "",
"e2e": "./scripts/test-e2e-lib.sh -host 'localhost:4200' -dev --folder demo-shell",