chore(ci): ⬆️ upgrade toolchain (#532)
parent
2e7fbf10cd
commit
c92fd018c6
|
@ -18,15 +18,13 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
# 第一步:检出代码
|
# 第一步:检出代码
|
||||||
- name: 检出代码
|
- name: 检出代码
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
# 第二步:安装 pnpm
|
# 第二步:安装 pnpm
|
||||||
- name: 安装 pnpm
|
- name: 安装 pnpm
|
||||||
uses: pnpm/action-setup@v3
|
uses: pnpm/action-setup@v4
|
||||||
with:
|
|
||||||
version: latest
|
|
||||||
|
|
||||||
# 第三步:安装依赖
|
# 第三步:安装依赖
|
||||||
- name: 安装依赖
|
- name: 安装依赖
|
||||||
|
|
|
@ -13,7 +13,7 @@ jobs:
|
||||||
lint:
|
lint:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
|
|
|
@ -14,14 +14,12 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: 检出代码
|
- name: 检出代码
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: 安装 pnpm
|
- name: 安装 pnpm
|
||||||
uses: pnpm/action-setup@v3
|
uses: pnpm/action-setup@v4
|
||||||
with:
|
|
||||||
version: latest
|
|
||||||
|
|
||||||
- name: 安装依赖
|
- name: 安装依赖
|
||||||
run: pnpm install
|
run: pnpm install
|
||||||
|
|
12
package.json
12
package.json
|
@ -2,7 +2,7 @@
|
||||||
"name": "rle-wiki",
|
"name": "rle-wiki",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"packageManager": "pnpm@9.13.2+sha512.88c9c3864450350e65a33587ab801acf946d7c814ed1134da4a924f6df5a2120fd36b46aab68f7cd1d413149112d53c7db3a4136624cfd00ff1846a0c6cef48a",
|
"packageManager": "pnpm@10.4.1+sha512.c753b6c3ad7afa13af388fa6d808035a008e30ea9993f58c6663e2bc5ff21679aa834db094987129aa4d488b86df57f7b634981b2f827cdcacc698cc0cfb88af",
|
||||||
"description": "RLE 指北",
|
"description": "RLE 指北",
|
||||||
"license": "CC-BY-SA-4.0",
|
"license": "CC-BY-SA-4.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -22,17 +22,21 @@
|
||||||
"@unocss/eslint-plugin": "^0.65.1",
|
"@unocss/eslint-plugin": "^0.65.1",
|
||||||
"eslint": "^9.16.0",
|
"eslint": "^9.16.0",
|
||||||
"eslint-plugin-format": "^0.1.3",
|
"eslint-plugin-format": "^0.1.3",
|
||||||
|
"markdownlint-cli": "^0.44.0",
|
||||||
"unocss": "^0.65.1",
|
"unocss": "^0.65.1",
|
||||||
"unplugin-vue-components": "^0.27.5",
|
"unplugin-vue-components": "^0.27.5",
|
||||||
"vite": "^6.0.3",
|
"vite": "^6.0.3",
|
||||||
"vitepress": "^1.5.0",
|
"vitepress": "^1.5.0",
|
||||||
"vue": "^3.5.13",
|
"vue": "^3.5.13"
|
||||||
"markdownlint-cli": "^0.44.0"
|
|
||||||
},
|
},
|
||||||
"pnpm": {
|
"pnpm": {
|
||||||
"overrides": {
|
"overrides": {
|
||||||
"hasown": "npm:@nolyfill/hasown@^1",
|
"hasown": "npm:@nolyfill/hasown@^1",
|
||||||
"is-core-module": "npm:@nolyfill/is-core-module@^1"
|
"is-core-module": "npm:@nolyfill/is-core-module@^1"
|
||||||
}
|
},
|
||||||
|
"onlyBuiltDependencies": [
|
||||||
|
"esbuild",
|
||||||
|
"vue-demi"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue