feat: upgrade ink for performance, and use stdio not http (#8004)

This commit is contained in:
Michael Neale
2026-03-20 12:23:18 +11:00
committed by GitHub
parent 3f8eec3237
commit 565b06b715
13 changed files with 851 additions and 272 deletions
+1 -2
View File
@@ -35,8 +35,7 @@ let binaryPath;
try {
// Resolve the package directory, then point at the binary inside it
const pkgDir = dirname(require.resolve(`${pkg}/package.json`));
const binName =
process.platform === "win32" ? "goose-acp-server.exe" : "goose-acp-server";
const binName = process.platform === "win32" ? "goose.exe" : "goose";
binaryPath = join(pkgDir, "bin", binName);
} catch {
// The optional dependency wasn't installed (e.g. wrong platform). That's fine.