We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent defa5d4 commit 00a598fCopy full SHA for 00a598f
packages/shared/src/utils.ts
@@ -283,12 +283,6 @@ export const getProgressColor = (index: number) =>
283
284
export function onExitProcess(listener: NodeJS.ExitListener) {
285
process.on('exit', listener);
286
-
287
- // listen to 'SIGINT' and trigger a exit
288
- // 'SIGINT' from the terminal is supported on all platforms, and can usually be generated with Ctrl + C
289
- process.on('SIGINT', () => {
290
- process.exit(0);
291
- });
292
}
293
294
export const isHtmlDisabled = (
0 commit comments