From b056f11d00de31c38df8c7d2404f8bf919a0e78f Mon Sep 17 00:00:00 2001 From: Alex Rudenko Date: Thu, 16 Apr 2026 13:25:48 +0200 Subject: [PATCH] chore: minor fixes to build --- .prettierignore | 1 + scripts/eval_gemini.ts | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.prettierignore b/.prettierignore index c357cfaf0..2e975d312 100644 --- a/.prettierignore +++ b/.prettierignore @@ -4,3 +4,4 @@ src/third_party/lighthouse-devtools-mcp-bundle.js # Release-please formatting brakes CI checks .claude-plugin/plugin.json +.github/plugin/plugin.json diff --git a/scripts/eval_gemini.ts b/scripts/eval_gemini.ts index 1391bfe61..bd5bafdb7 100644 --- a/scripts/eval_gemini.ts +++ b/scripts/eval_gemini.ts @@ -99,7 +99,10 @@ async function runSingleScenario( } // Path to the compiled MCP server - const serverPath = path.join(ROOT_DIR, 'build/src/index.js'); + const serverPath = path.join( + ROOT_DIR, + 'build/src/bin/chrome-devtools-mcp.js', + ); if (!fs.existsSync(serverPath)) { throw new Error( `MCP server not found at ${serverPath}. Please run 'npm run build' first.`,