From 132cf3e13a1ab1306a549f82a2d8cd32d81103a5 Mon Sep 17 00:00:00 2001 From: bendtherules Date: Tue, 14 Apr 2026 14:34:17 +0530 Subject: [PATCH] feat(agent-tools): run child process with Bun instead of Node --- src/agent-tools/evaluateInEngine262.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/agent-tools/evaluateInEngine262.ts b/src/agent-tools/evaluateInEngine262.ts index a029e8e..1f9de3e 100644 --- a/src/agent-tools/evaluateInEngine262.ts +++ b/src/agent-tools/evaluateInEngine262.ts @@ -132,8 +132,8 @@ function executeInChildProcess( "evaluateInEngine262.runner.mjs", ); - // Spawn child process - const child = spawn("node", [runnerPath], { + // Spawn child process using Bun + const child = spawn("bun", [runnerPath], { stdio: ["pipe", "pipe", "pipe"], killSignal: "SIGKILL", // Force kill, can't be blocked });