From 8e519cd8e41e6db1036675c2d09843079681c851 Mon Sep 17 00:00:00 2001 From: Jason Jean Date: Fri, 2 Oct 2020 19:17:03 -0400 Subject: [PATCH] fix(core): fix process hanging for ctrl C (#3856) --- packages/workspace/src/tasks-runner/task-orchestrator.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/workspace/src/tasks-runner/task-orchestrator.ts b/packages/workspace/src/tasks-runner/task-orchestrator.ts index a68575853b..4870797cc3 100644 --- a/packages/workspace/src/tasks-runner/task-orchestrator.ts +++ b/packages/workspace/src/tasks-runner/task-orchestrator.ts @@ -342,6 +342,7 @@ export class TaskOrchestrator { this.processes.forEach((p) => { p.kill('SIGINT'); }); + process.exit(); }); } }