mirror of
https://github.com/bendtherules/ask262.git
synced 2026-08-18 13:21:55 +00:00
feat(agent-tools): run child process with Bun instead of Node
This commit is contained in:
@@ -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
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user