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 5f1a4b2 commit 6e748fcCopy full SHA for 6e748fc
src/index.ts
@@ -53,7 +53,9 @@ app.on('quit', () => {
53
// On windows, children die automatically.
54
// Elsewhere, we have to make sure we clean up the whole group.
55
// https://azimi.me/2014/12/31/kill-child_process-node-js.html
56
- process.kill(-server.pid);
+ try {
57
+ process.kill(-server.pid);
58
+ } catch (e) { }
59
}
60
61
});
0 commit comments