@d3lm/pr-stats 0.2.2 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tui-app.mjs +2 -1
- package/package.json +1 -1
package/dist/tui-app.mjs
CHANGED
|
@@ -5588,7 +5588,8 @@ function bootstrap() {
|
|
|
5588
5588
|
// src/tui/main.tsx
|
|
5589
5589
|
import { jsx as jsx15 } from "@opentui/react/jsx-runtime";
|
|
5590
5590
|
var { initial, saved, noCache, copyLinks, theme: theme2 } = bootstrap();
|
|
5591
|
-
var
|
|
5591
|
+
var exitSignals = ["SIGINT", "SIGTERM", "SIGQUIT", "SIGABRT", "SIGHUP", "SIGBREAK", "SIGBUS"];
|
|
5592
|
+
var renderer = await createCliRenderer({ exitOnCtrlC: true, exitSignals });
|
|
5592
5593
|
for (const signal of ["SIGTERM", "SIGHUP"]) {
|
|
5593
5594
|
process.on(signal, () => {
|
|
5594
5595
|
renderer.destroy();
|