@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.
Files changed (2) hide show
  1. package/dist/tui-app.mjs +2 -1
  2. 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 renderer = await createCliRenderer({ exitOnCtrlC: true });
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();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d3lm/pr-stats",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "GitHub PR stats in an interactive terminal UI, via the gh CLI or an access token",
5
5
  "type": "module",
6
6
  "author": "Dominic Elm",