chore: update dependencies

This commit is contained in:
pany 2025-02-21 17:19:07 +08:00
parent 93e5537332
commit 64c1dbb5c4
5 changed files with 1081 additions and 1011 deletions

View File

@ -18,7 +18,7 @@
"@element-plus/icons-vue": "2.3.1", "@element-plus/icons-vue": "2.3.1",
"axios": "1.7.9", "axios": "1.7.9",
"dayjs": "1.11.13", "dayjs": "1.11.13",
"element-plus": "2.9.3", "element-plus": "2.9.5",
"js-cookie": "3.0.5", "js-cookie": "3.0.5",
"lodash-es": "4.17.21", "lodash-es": "4.17.21",
"mitt": "3.0.1", "mitt": "3.0.1",
@ -26,37 +26,37 @@
"nprogress": "0.2.0", "nprogress": "0.2.0",
"path-browserify": "1.0.1", "path-browserify": "1.0.1",
"path-to-regexp": "8.2.0", "path-to-regexp": "8.2.0",
"pinia": "2.3.1", "pinia": "3.0.1",
"screenfull": "6.0.2", "screenfull": "6.0.2",
"vue": "3.5.13", "vue": "3.5.13",
"vue-router": "4.5.0", "vue-router": "4.5.0",
"vxe-table": "4.6.25" "vxe-table": "4.6.25"
}, },
"devDependencies": { "devDependencies": {
"@antfu/eslint-config": "4.1.1", "@antfu/eslint-config": "4.3.0",
"@types/js-cookie": "3.0.6", "@types/js-cookie": "3.0.6",
"@types/lodash-es": "4.17.12", "@types/lodash-es": "4.17.12",
"@types/node": "22.13.1", "@types/node": "22.13.4",
"@types/nprogress": "0.2.3", "@types/nprogress": "0.2.3",
"@types/path-browserify": "1.0.3", "@types/path-browserify": "1.0.3",
"@vitejs/plugin-vue": "5.2.1", "@vitejs/plugin-vue": "5.2.1",
"@vitejs/plugin-vue-jsx": "4.1.1", "@vitejs/plugin-vue-jsx": "4.1.1",
"@vue/test-utils": "2.4.6", "@vue/test-utils": "2.4.6",
"eslint": "9.19.0", "eslint": "9.20.1",
"eslint-plugin-format": "1.0.1", "eslint-plugin-format": "1.0.1",
"happy-dom": "17.0.0", "happy-dom": "17.1.1",
"husky": "9.1.7", "husky": "9.1.7",
"lint-staged": "15.4.3", "lint-staged": "15.4.3",
"sass": "1.78.0", "sass": "1.78.0",
"typescript": "5.7.3", "typescript": "5.7.3",
"unocss": "65.4.3", "unocss": "66.0.0",
"unplugin-auto-import": "19.0.0", "unplugin-auto-import": "19.1.0",
"unplugin-svg-component": "0.12.1", "unplugin-svg-component": "0.12.1",
"unplugin-vue-components": "28.0.0", "unplugin-vue-components": "28.4.0",
"vite": "6.1.0", "vite": "6.1.1",
"vite-svg-loader": "5.1.0", "vite-svg-loader": "5.1.0",
"vitest": "3.0.5", "vitest": "3.0.6",
"vue-tsc": "2.2.0" "vue-tsc": "2.2.2"
}, },
"lint-staged": { "lint-staged": {
"*": "eslint --fix" "*": "eslint --fix"

2058
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -38,8 +38,9 @@ body {
background-color: var(--v3-body-bg-color); background-color: var(--v3-body-bg-color);
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
font-family: Inter, "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", font-family:
Arial, sans-serif; Inter, "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial,
sans-serif;
@extend %scrollbar; @extend %scrollbar;
} }

View File

@ -2,6 +2,7 @@
// @ts-nocheck // @ts-nocheck
// Generated by unplugin-vue-components // Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399 // Read more: https://github.com/vuejs/core/pull/3399
// biome-ignore lint: disable
export {} export {}
/* prettier-ignore */ /* prettier-ignore */

View File

@ -1,4 +1,4 @@
import { defineConfig, presetAttributify, presetUno } from "unocss" import { defineConfig, presetAttributify, presetWind3 } from "unocss"
export default defineConfig({ export default defineConfig({
// 预设 // 预设
@ -9,7 +9,7 @@ export default defineConfig({
prefixedOnly: false prefixedOnly: false
}), }),
// 默认预设 // 默认预设
presetUno({ presetWind3({
important: "#app" important: "#app"
}) })
], ],