File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -27,47 +27,39 @@ switch (scriptName) {
2727 case "init" :
2828 init ( ) ;
2929 process . exit ( 0 ) ;
30- break ;
3130
3231 case "compile" : {
3332 const status = compile ( ) ;
3433 process . exit ( status ) ;
35- break ;
3634 }
3735
3836 case "format" : {
3937 const status = format ( ) ;
4038 process . exit ( status ) ;
41- break ;
4239 }
4340
4441 case "help" :
4542 help ( ) ;
4643 process . exit ( 0 ) ;
47- break ;
4844
4945 case "lint" : {
5046 const status = lint ( ) ;
5147 process . exit ( status ) ;
52- break ;
5348 }
5449
5550 case "run" : {
5651 const status = run ( ) ;
5752 process . exit ( status ) ;
58- break ;
5953 }
6054
6155 case "test" : {
6256 const status = test ( ) ;
6357 process . exit ( status ) ;
64- break ;
6558 }
6659
6760 case "test:transpileOnly" : {
6861 const status = testTranspileOnly ( ) ;
6962 process . exit ( status ) ;
70- break ;
7163 }
7264
7365 default :
You can’t perform that action at this time.
0 commit comments