fix(runtime): support Node 22.14 installs

This commit is contained in:
Peter Steinberger
2026-03-25 06:15:21 -07:00
parent 3c3fd8c386
commit ea08f2eb8c
26 changed files with 56 additions and 55 deletions

View File

@@ -154,7 +154,7 @@ async function resolveBinaryPath(binary: string): Promise<string> {
throw new Error("Bun not found in PATH. Install bun: https://bun.sh");
}
throw new Error(
"Node not found in PATH. Install Node 24 (recommended) or Node 22 LTS (22.16+).",
"Node not found in PATH. Install Node 24 (recommended) or Node 22 LTS (22.14+).",
);
}
}