feat: upgrade vite and vue to the latest version

This commit is contained in:
IchliebedichZhu 2024-03-04 15:45:04 +00:00
parent 4640fa0ca2
commit 1ea97a877e
3 changed files with 11 additions and 21 deletions

View File

@ -31,7 +31,8 @@
"qr-code-styling": "^1.6.0-rc.1",
"selecto": "^1.13.0",
"throttle-debounce": "^3.0.1",
"vue": "3.2.22",
"vite-plugin-compression": "^0.5.1",
"vue": "3.4.19",
"vue-router": "^4.0.0-0",
"vuedraggable": "^4.1.0",
"vuex": "^4.0.0-0"
@ -41,29 +42,17 @@
"@types/throttle-debounce": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vitejs/plugin-vue": "1.9.3",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.1.4",
"@vue/eslint-config-typescript": "^7.0.0",
"@vitejs/plugin-vue": "^5.0.4",
"autoprefixer": "^10.3.1",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"esbuild-loader": "^2.13.1",
"eslint": "^7.29.0",
"eslint-config-alloy": "~4.1.0",
"eslint-plugin-vue": "^7.12.1",
"less": "^4.1.1",
"typescript": "^5.3.3",
"typescript": "^5.2.2",
"unplugin-element-plus": "^0.7.1",
"vite": "2.6.4",
"vite-plugin-compression": "^0.3.0",
"vue-cli-plugin-norm": "~1.2.2",
"vue-eslint-parser": "^7.6.0",
"vue-tsc": "0.3.0"
"vite": "^5.1.4",
"vue-tsc": "^1.8.27"
},
"browserslist": [
"> 1%",

View File

@ -15,7 +15,8 @@ const exclude = ['settings', 'layout']
const regex = RegExp('.*^(?!.*?(' + exclude.join('|') + ')).*\\.vue$')
// const requireComponent = require.context('.', true, /\.vue$/) // 找到components文件夹下以.vue命名的文件
const requireComponent = import.meta.globEager('./**/*.vue')
const requireComponent = import.meta.glob('./**/*.vue', { eager: true })
function guide(Vue: Type.Object) {
for (const fileName in requireComponent) {

6
src/types/env.d.ts vendored
View File

@ -26,11 +26,11 @@ interface ImportMeta {
// readonly env: ImportMetaEnv
glob(pattern: string): Record<
glob(pattern: string, { eager: boolean }): Record<
string,
() => Promise<{
{
[key: string]: any
}>
}
>
globEager(pattern: string): Record<