feat(agent-tools): run child process with Bun instead of Node

This commit is contained in:
2026-04-14 14:34:17 +05:30
parent cd386bd09f
commit 132cf3e13a
+2 -2
View File
@@ -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
});