feat: 更新依赖项版本和CI配置
This commit is contained in:
2
.github/workflows/ci.yaml
vendored
2
.github/workflows/ci.yaml
vendored
@ -32,7 +32,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
container: yanhao98/runner-images:pnpm-with-playwright
|
||||
steps:
|
||||
- uses: yanhao98/composite-actions/setup-node-environment@6af4afe9ff50a3ea1b24f38ce51a99d4a8f6376a
|
||||
- uses: yanhao98/composite-actions/setup-node-environment@main
|
||||
- run: pnpm run build-only
|
||||
env:
|
||||
VITE_BUILD_COMMIT: ${{ github.sha }}
|
||||
|
2
.npmrc
2
.npmrc
@ -1,8 +1,8 @@
|
||||
registry=https://registry.npmjs.org/
|
||||
registry=https://r-npm.oo1.dev
|
||||
registry=https://registry.npmmirror.com/
|
||||
registry=https://mirrors.cloud.tencent.com/npm/
|
||||
registry=https://mirrors.huaweicloud.com/repository/npm/
|
||||
registry=https://registry.npmjs.org/
|
||||
|
||||
# https://pnpm.io/zh/npmrc#node-mirrorltreleasedir
|
||||
use-node-version=22.11.0
|
||||
|
44
package.json
44
package.json
@ -1,5 +1,5 @@
|
||||
{
|
||||
"packageManager": "pnpm@9.14.2",
|
||||
"packageManager": "pnpm@9.14.4",
|
||||
"name": "vue-ts-example",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
@ -12,10 +12,10 @@
|
||||
"lint": "eslint . --fix",
|
||||
"format": "prettier --write src/",
|
||||
"prepare": "husky",
|
||||
"dev+preview": "bunx dev-and-preview@1.0.0",
|
||||
"playwright": "playwright test",
|
||||
"playwright:ui": "playwright test --ui",
|
||||
"playwright:chromium": "playwright test --project=chromium"
|
||||
"playwright:chromium": "playwright test --project=chromium",
|
||||
"dep:dedupe": "pnpm dedupe"
|
||||
},
|
||||
"lint-staged": {
|
||||
"src/**/*.{js,ts,vue}": [
|
||||
@ -29,20 +29,20 @@
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@alova/adapter-axios": "^2.0.10",
|
||||
"@alova/adapter-axios": "^2.0.11",
|
||||
"@intlify/unplugin-vue-i18n": "^6.0.0",
|
||||
"@primevue/themes": "^4.2.4",
|
||||
"@unhead/vue": "^1.11.13",
|
||||
"@vant/use": "^1.6.0",
|
||||
"@vueuse/core": "^11.3.0",
|
||||
"alova": "^3.2.4",
|
||||
"@vueuse/core": "^12.0.0",
|
||||
"alova": "^3.2.6",
|
||||
"axios": "^1.7.8",
|
||||
"dayjs": "^1.11.13",
|
||||
"jsencrypt": "^3.3.2",
|
||||
"mitt": "^3.0.1",
|
||||
"nprogress": "^0.2.0",
|
||||
"page-stack-vue3": "^2.5.6",
|
||||
"pinia": "^2.2.6",
|
||||
"pinia": "^2.2.8",
|
||||
"pinia-plugin-persistedstate": "^4.1.3",
|
||||
"primelocale": "^1.2.2",
|
||||
"primevue": "^4.2.4",
|
||||
@ -55,37 +55,35 @@
|
||||
"vant": "^4.9.9",
|
||||
"vite-plugin-webfont-dl": "^3.10.2",
|
||||
"vue": "^3.5.13",
|
||||
"vue-i18n": "10.0.4",
|
||||
"vue-i18n": "10.0.5",
|
||||
"vue-page-stack": "^3.2.0",
|
||||
"vue-router": "^4.5.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint/compat": "^1.2.3",
|
||||
"@faker-js/faker": "^9.2.0",
|
||||
"@faker-js/faker": "^9.3.0",
|
||||
"@iconify-json/carbon": "^1.2.4",
|
||||
"@iconify/utils": "^2.1.33",
|
||||
"@playwright/test": "^1.49.0",
|
||||
"@primevue/auto-import-resolver": "^4.2.4",
|
||||
"@tsconfig/node20": "^20.1.4",
|
||||
"@types/jsdom": "^21.1.7",
|
||||
"@types/node": "^22.10.0",
|
||||
"@types/node": "^22.10.1",
|
||||
"@types/nprogress": "^0.2.3",
|
||||
"@unocss/preset-attributify": "^0.64.1",
|
||||
"@unocss/preset-rem-to-px": "^0.64.1",
|
||||
"@unocss/reset": "^0.64.1",
|
||||
"@unocss/preset-rem-to-px": "latest",
|
||||
"@vant/auto-import-resolver": "^1.2.1",
|
||||
"@vitejs/plugin-vue": "^5.2.1",
|
||||
"@vitejs/plugin-vue-jsx": "^4.1.1",
|
||||
"@vue/eslint-config-prettier": "^10.1.0",
|
||||
"@vue/eslint-config-typescript": "^14.1.4",
|
||||
"@vue/test-utils": "^2.4.6",
|
||||
"@vue/tsconfig": "^0.6.0",
|
||||
"@vue/tsconfig": "^0.7.0",
|
||||
"commitizen": "^4.3.1",
|
||||
"cz-conventional-changelog": "^3.3.0",
|
||||
"depcheck": "^1.4.7",
|
||||
"eruda": "^3.4.1",
|
||||
"eslint": "^9.15.0",
|
||||
"eslint-plugin-vue": "^9.31.0",
|
||||
"eslint": "^9.16.0",
|
||||
"eslint-plugin-vue": "^9.32.0",
|
||||
"husky": "^9.1.7",
|
||||
"jsdom": "^25.0.1",
|
||||
"less": "^4.2.1",
|
||||
@ -95,18 +93,18 @@
|
||||
"prettier": "^3.4.1",
|
||||
"surge": "^0.24.6",
|
||||
"typescript": "~5.6.3",
|
||||
"unocss": "^0.64.1",
|
||||
"unplugin-auto-import": "^0.18.5",
|
||||
"unplugin-icons": "^0.20.1",
|
||||
"unplugin-vue-components": "^0.27.4",
|
||||
"unocss": "^0.65.0",
|
||||
"unplugin-auto-import": "^0.18.6",
|
||||
"unplugin-icons": "^0.21.0",
|
||||
"unplugin-vue-components": "^0.27.5",
|
||||
"unplugin-vue-macros": "^2.13.4",
|
||||
"unplugin-vue-markdown": "^0.26.2",
|
||||
"unplugin-vue-markdown": "^0.27.1",
|
||||
"unplugin-vue-router": "^0.10.8",
|
||||
"vercel": "^39.1.2",
|
||||
"vite": "^6.0.1",
|
||||
"vite": "^6.0.2",
|
||||
"vite-plugin-cdn-import": "^1.0.1",
|
||||
"vite-plugin-fake-server": "^2.1.3",
|
||||
"vite-plugin-vue-devtools": "^7.6.4",
|
||||
"vite-plugin-vue-devtools": "^7.6.7",
|
||||
"vue-tsc": "^2.1.10"
|
||||
}
|
||||
}
|
1618
pnpm-lock.yaml
generated
1618
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user