From ced125a974f4e1f918454598631e0df7850e4669 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Tue, 10 Mar 2026 00:52:21 -0400 Subject: [PATCH] core: log npm install errors to console for debugging dependency failures --- packages/opencode/src/config/config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/opencode/src/config/config.ts b/packages/opencode/src/config/config.ts index 314554b22b..178501d446 100644 --- a/packages/opencode/src/config/config.ts +++ b/packages/opencode/src/config/config.ts @@ -288,6 +288,7 @@ export namespace Config { // Install any additional dependencies defined in the package.json // This allows local plugins and custom tools to use external packages await Npm.install(dir).catch((err: any) => { + console.log(err) log.warn("failed to install dependencies", { dir, error: err.message }) }) }