File tree 3 files changed +4
-4
lines changed 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 83
83
"engines" : {
84
84
"node" : " >=12"
85
85
}
86
- }
86
+ }
Original file line number Diff line number Diff line change @@ -225,11 +225,11 @@ export async function run(argv: NodeJS.Process['argv']) {
225
225
'Search config invalid:' ,
226
226
validationErrors . map ( err => err ?. message || '' )
227
227
) ;
228
- process . exit ( 0 ) ;
228
+ process . exit ( 1 ) ;
229
229
}
230
230
} catch ( err : unknown ) {
231
231
const errorMsg = err instanceof Error ? err . message : JSON . stringify ( err ) ;
232
232
printErrors ( '\nSomething went wrong:' , errorMsg ) ;
233
- process . exit ( 0 ) ;
233
+ process . exit ( 1 ) ;
234
234
}
235
235
}
Original file line number Diff line number Diff line change @@ -48,6 +48,6 @@ export class MemoryUsageReporter {
48
48
console . log ( 'Stopping memory usage tracker' , reason ) ;
49
49
clearInterval ( this . interval ) ;
50
50
this . interval = null ;
51
- process . exit ( 0 ) ;
51
+ process . exit ( 1 ) ;
52
52
}
53
53
}
You can’t perform that action at this time.
0 commit comments