From c83542af8f928d12b689a2f25c7b431af4fa09e3 Mon Sep 17 00:00:00 2001 From: James Feng <47167674+GhostDragon124@users.noreply.github.com> Date: Thu, 4 Jun 2026 17:08:01 +0800 Subject: [PATCH] =?UTF-8?q?fix(ci):=20=E4=BF=AE=E5=A4=8D=20postinstall=20+?= =?UTF-8?q?=20Bun=20=E7=89=88=E6=9C=AC=E5=AF=B9=E9=BD=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除缺失的 setup-chrome-mcp.mjs (CCB Chrome 集成,CCP 不需要) - CI Bun: 1.3.11 → 1.3.14 (对齐本地环境) --- .github/workflows/ci.yml | 2 +- package.json | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d096b8120..8891dc762 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: - uses: oven-sh/setup-bun@v2 with: - bun-version: '1.3.11' + bun-version: '1.3.14' - name: Replace mirror URLs run: sed -i '' 's|registry.npmmirror.com|registry.npmjs.org|g' bun.lock diff --git a/package.json b/package.json index 80e372290..b68a5f870 100644 --- a/package.json +++ b/package.json @@ -36,9 +36,7 @@ ], "files": [ "dist", - "scripts/postinstall.cjs", - "scripts/run-parallel.mjs", - "scripts/setup-chrome-mcp.mjs" + "scripts/postinstall.cjs" ], "scripts": { "build": "bun run build.ts", @@ -62,7 +60,7 @@ "check:bundle": "bun run scripts/check-bundle-integrity.ts", "check:unused": "knip-bun", "health": "bun run scripts/health-check.ts", - "postinstall": "node scripts/run-parallel.mjs scripts/postinstall.cjs scripts/setup-chrome-mcp.mjs", + "postinstall": "node scripts/postinstall.cjs", "docs:dev": "npx mintlify dev", "typecheck": "tsc --noEmit", "precheck": "bun run typecheck && bun run check:fix && bun test",