mirror of
https://github.com/riba2534/TCP-IP-NetworkNote.git
synced 2026-06-30 18:06:04 +08:00
GitHub runner 上 npm install/ci 反复 'Exit handler never called!' 崩溃 (72s 无输出后退出),改用 pnpm 9 + Node 22: - pnpm/action-setup@v4 + setup-node cache pnpm - 生成 pnpm-lock.yaml,删除 package-lock.json - package.json 加 packageManager 字段,scripts 统一 pnpm
15 lines
353 B
JSON
15 lines
353 B
JSON
{
|
|
"name": "tcp-ip-network-notes-site",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"gen": "node scripts/build.mjs",
|
|
"dev": "pnpm run gen && vitepress dev",
|
|
"build": "pnpm run gen && vitepress build",
|
|
"preview": "vitepress preview"
|
|
},
|
|
"devDependencies": {
|
|
"vitepress": "^1.5.0"
|
|
},
|
|
"packageManager": "pnpm@9.15.9"
|
|
} |