We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7ae9e8 commit 59c2315Copy full SHA for 59c2315
src/bin/chrome-devtools-mcp.ts
@@ -6,6 +6,8 @@
6
* SPDX-License-Identifier: Apache-2.0
7
*/
8
9
+process.title = "chrome-devtools-mcp";
10
+
11
import {version} from 'node:process';
12
13
const [major, minor] = version.substring(1).split('.').map(Number);
@@ -31,4 +33,5 @@ if (major < 20) {
31
33
process.exit(1);
32
34
}
35
36
37
await import('./chrome-devtools-mcp-main.js');
src/bin/chrome-devtools.ts
+process.title = "chrome-devtools";
import process from 'node:process';
import type {Options, PositionalOptions} from 'yargs';
0 commit comments