From 0af8fc2942771d9fa5ea9e5fbc41849d3000832d Mon Sep 17 00:00:00 2001 From: Gianni Crivello Date: Mon, 16 Feb 2026 09:32:09 -0500 Subject: [PATCH] release/v0.1.8 --- package.json | 2 +- src/tui/ralph/stream.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index a4ffd05..aea4681 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nightshift", - "version": "0.1.7", + "version": "0.1.8", "private": true, "type": "module", "scripts": { diff --git a/src/tui/ralph/stream.ts b/src/tui/ralph/stream.ts index af2d6b7..c10b502 100644 --- a/src/tui/ralph/stream.ts +++ b/src/tui/ralph/stream.ts @@ -157,7 +157,7 @@ export function streamEvents( try { const event: RalphEvent = JSON.parse(line.slice(6)); handleEvent(event); - } catch {} + } catch { } } } }