From 90608b74e2d3813b79c418ac8b92cd4feb644aff Mon Sep 17 00:00:00 2001 From: Vanessa Beck <102266523+stochastic-sisyphus@users.noreply.github.com> Date: Tue, 19 May 2026 22:15:36 -0500 Subject: [PATCH] fix: rename realtimeLlmEventParser.ts to match import case Three handler files (src/handlers/realtimeHandler.ts, src/handlers/realtimeHandlerNode.ts, src/handlers/websocketUtils.ts) import from '../services/realtimeLLMEventParser' (capitalized "LLM"), but the file on disk is realtimeLlmEventParser.ts (lowercase "llm"). This works on case-insensitive file systems (macOS default, Windows default) but breaks Linux Docker builds with: RollupError: Could not resolve "../services/realtimeLLMEventParser" from "src/handlers/realtimeHandlerNode.ts" Rename the file to match the imports. --- .../{realtimeLlmEventParser.ts => realtimeLLMEventParser.ts} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename src/services/{realtimeLlmEventParser.ts => realtimeLLMEventParser.ts} (100%) diff --git a/src/services/realtimeLlmEventParser.ts b/src/services/realtimeLLMEventParser.ts similarity index 100% rename from src/services/realtimeLlmEventParser.ts rename to src/services/realtimeLLMEventParser.ts