From d35a13f3d6567d16978d333e6e63a7f5301eb634 Mon Sep 17 00:00:00 2001 From: Shubham Naik Date: Tue, 24 Feb 2026 15:06:43 -0800 Subject: [PATCH] chore: fix websocket issue (#1125) --- build.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.js b/build.js index 3d330e2..54338d3 100644 --- a/build.js +++ b/build.js @@ -46,6 +46,8 @@ await Bun.build({ ".txt": "text", }, + // Keep native Node.js modules external to avoid bundling issues + external: ["ws", "sharp", "@vscode/ripgrep"], features: features, });