File tree 3 files changed +718
-559
lines changed 3 files changed +718
-559
lines changed Original file line number Diff line number Diff line change 4
4
*/
5
5
object FrontendCommands {
6
6
val dependencyInstall : String = " npm install"
7
- val test : String = " npm run test-no-watch "
7
+ val test : String = " npm run test:ci "
8
8
val serve : String = " npm run start"
9
- val build : String = " npm run build- prod"
9
+ val build : String = " npm run build: prod"
10
10
}
Original file line number Diff line number Diff line change 4
4
"license" : " MIT" ,
5
5
"scripts" : {
6
6
"ng" : " ng" ,
7
- "build" : " ng build" ,
8
- "test" : " ng test" ,
9
7
"lint" : " ng lint" ,
10
8
"e2e" : " ng e2e" ,
11
9
"start" : " ng serve --open --proxy-config src/proxy.conf.js --host 0.0.0.0" ,
12
- "test-no-watch" : " ng test --single-run" ,
13
- "build-dev" : " ng build --progress --output-path ../public" ,
14
- "build-prod" : " ng build --extract-css --progress --prod --aot --output-path ../public"
10
+ "test" : " ng test --watch" ,
11
+ "test:ci" : " ng test --watch=false --browsers ChromeHeadless" ,
12
+ "test:coverage" : " ng test --watch=true --code-coverage=true" ,
13
+ "test:coverage:ci" : " ng test --watch=false --code-coverage=true --browsers ChromeHeadless" ,
14
+ "build:dev" : " ng build --progress --output-path ../public" ,
15
+ "build:prod" : " ng build --progress --prod --output-path ../public"
15
16
},
16
17
"private" : true ,
17
18
"dependencies" : {
You can’t perform that action at this time.
0 commit comments