fix: bridge respawned child signals (#933) (thanks @roshanasingh4)

Co-authored-by: Roshan Singh <roshanasingh4@users.noreply.github.com>
This commit is contained in:
Peter Steinberger
2026-01-15 06:37:27 +00:00
parent d9f2ee40f7
commit 154b8e3e0e
6 changed files with 80 additions and 50 deletions

View File

@@ -11,7 +11,7 @@ server.listen(0, "127.0.0.1", () => {
process.stdout.write(`${addr.port}\n`);
});
const shutdown = (): void => {
const shutdown = () => {
server.close(() => process.exit(0));
};