Skip to content

Commit 0cc907a

Browse files
authored
fix: clarify the node version message (#135)
1 parent 3597a3b commit 0cc907a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const [major, minor] = process.version.substring(1).split('.').map(Number);
1010

1111
if (major < 22 || (major === 22 && minor < 12)) {
1212
console.error(
13-
`ERROR: \`chrome-devtools-mcp\` does not support Node ${process.version}. Please upgrade to Node 22+.`,
13+
`ERROR: \`chrome-devtools-mcp\` does not support Node ${process.version}. Please upgrade to Node 22.12.0 or newer.`,
1414
);
1515
process.exit(1);
1616
}

0 commit comments

Comments
 (0)