refactor(deadcode): enforce repository hard zero (#108641)

This commit is contained in:
Peter Steinberger
2026-07-15 22:40:00 -07:00
committed by GitHub
parent cf8cfa8322
commit bae9752c5a
187 changed files with 1413 additions and 2284 deletions
-11
View File
@@ -1,11 +0,0 @@
process.stdout.write("ready\n");
const keepAlive = setInterval(() => {}, 1000);
const shutdown = () => {
clearInterval(keepAlive);
process.exit(0);
};
process.on("SIGTERM", shutdown);
process.on("SIGINT", shutdown);