Skip to content

Instantly share code, notes, and snippets.

@priyankakundu
Forked from tejpaldev/test
Created March 22, 2022 11:17
Show Gist options
  • Save priyankakundu/68d9ded4ef3b21a24c9fd8841c65ab9b to your computer and use it in GitHub Desktop.
Save priyankakundu/68d9ded4ef3b21a24c9fd8841c65ab9b to your computer and use it in GitHub Desktop.
testng
"scripts": {
"ng": "ng",
"start": "ng serve --open",
"start-hmr": "ng serve --configuration hmr --source-map=false --hmr-warning=false",
"start-hmr-sourcemaps": "ng serve --configuration hmr --source-map=true --hmr-warning=false",
"build": "node --max_old_space_size=6144 ./node_modules/@angular/cli/bin/ng build --aot --deploy-url=dist/ --output-hashing all --watch",
"build-watch": "node --max_old_space_size=6144 ./node_modules/@angular/cli/bin/ng build --deploy-url=dist/ --output-hashing all --watch",
"build-stats": "node --max_old_space_size=6144 ./node_modules/@angular/cli/bin/ng build --dev --stats-json",
"build-prod": "node --max_old_space_size=6144 ./node_modules/@angular/cli/bin/ng build --prod --aot --deploy-url=dist/",
"build-ci": "ng build --prod --aot --output-path=prod/dist --deploy-url=dist/",
"build-prod-stats": "node --max_old_space_size=6144 ./node_modules/@angular/cli/bin/ng build --prod --stats-json",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"bundle-report": "webpack-bundle-analyzer dist/stats.json"
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment