Skip to content
Snippets Groups Projects
Commit 70062049 authored by Florent POITTEVIN's avatar Florent POITTEVIN
Browse files

chore: chery pick script that allow to run local serve without watcher

parent ab355942
No related branches found
No related tags found
No related merge requests found
......@@ -10,11 +10,17 @@
"sync-version": "sync-pom-version",
"serve": "node --max-old-space-size=8192 node_modules/@angular/cli/bin/ng serve",
"start": "npm run prepare && npm run generate-models && npm run serve",
"start:no-watch": "npm run prepare && npm run generate-models && npm run serve -- --watch=false",
"start:local": "npm run prepare && npm run generate-models && npm run serve -- --proxy-config proxy.conf.local.js",
"start:local:no-watch": "npm run prepare && npm run generate-models && npm run serve -- --proxy-config proxy.conf.local.js --watch=false",
"start:remote": "npm run prepare && npm run generate-models && npm run serve -- --host 0.0.0.0 --port 4200 --disable-host-check",
"start:remote:no-watch": "npm run prepare && npm run generate-models && npm run serve -- --host 0.0.0.0 --port 4200 --disable-host-check --watch=false",
"start:nodocker": "npm run prepare && npm run generate-models && npm run serve -- -c no-docker",
"start:nodocker:no-watch": "npm run prepare && npm run generate-models && npm run serve -- -c no-docker --watch=false",
"start:standalone": "npm run prepare && npm run generate-models && npm run serve -- -c standalone",
"start:standalone:no-watch": "npm run prepare && npm run generate-models && npm run serve -- -c standalone --watch=false",
"start:dlcmtest": "npm run prepare && npm run generate-models && npm run serve -- -c dlcmtest-local",
"start:dlcmtest:no-watch": "npm run start:dlcmtest -- --watch=false",
"start:noapigenerate": "npm run prepare && npm run serve",
"build": "npm run prepare && ng build --aot=true --prod=true --source-map=false",
"test": "npm run prepare && ng test --no-progress --code-coverage",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment