Skip to content

Commit 0287486

Browse files
authored
chore: minor fixes to build and evals (#1875)
1 parent 0aff266 commit 0287486

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ src/third_party/lighthouse-devtools-mcp-bundle.js
44

55
# Release-please formatting brakes CI checks
66
.claude-plugin/plugin.json
7+
.github/plugin/plugin.json

scripts/eval_gemini.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,10 @@ async function runSingleScenario(
9999
}
100100

101101
// Path to the compiled MCP server
102-
const serverPath = path.join(ROOT_DIR, 'build/src/index.js');
102+
const serverPath = path.join(
103+
ROOT_DIR,
104+
'build/src/bin/chrome-devtools-mcp.js',
105+
);
103106
if (!fs.existsSync(serverPath)) {
104107
throw new Error(
105108
`MCP server not found at ${serverPath}. Please run 'npm run build' first.`,

0 commit comments

Comments
 (0)