mirror of
https://github.com/bendtherules/ask262.git
synced 2026-08-18 21:31:46 +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",
|
"evaluateInEngine262.runner.mjs",
|
||||||
);
|
);
|
||||||
|
|
||||||
// Spawn child process
|
// Spawn child process using Bun
|
||||||
const child = spawn("node", [runnerPath], {
|
const child = spawn("bun", [runnerPath], {
|
||||||
stdio: ["pipe", "pipe", "pipe"],
|
stdio: ["pipe", "pipe", "pipe"],
|
||||||
killSignal: "SIGKILL", // Force kill, can't be blocked
|
killSignal: "SIGKILL", // Force kill, can't be blocked
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user