chore: 更新版本到 1.3.2

This commit is contained in:
claude-code-best
2026-04-12 22:47:03 +08:00
parent 8399d9ed20
commit 1071270ce3
4 changed files with 27 additions and 18 deletions

View File

@@ -9,18 +9,11 @@
*/
import { execFileSync } from "node:child_process";
import { createRequire } from "node:module";
import { dirname, join } from "node:path";
import { fileURLToPath } from "node:url";
const __dirname = dirname(fileURLToPath(import.meta.url));
const cliPath = join(
__dirname,
"..",
"node_modules",
"mcp-chrome-bridge",
"dist",
"cli.js",
);
const require = createRequire(import.meta.url);
const cliPath = require.resolve("mcp-chrome-bridge/dist/cli.js");
const userArgs = process.argv.slice(2);