mirror of
https://github.com/palxiao/poster-design.git
synced 2025-07-15 16:02:19 +08:00
feat: upgrade vite and vue to the latest version
This commit is contained in:
parent
4640fa0ca2
commit
1ea97a877e
23
package.json
23
package.json
@ -31,7 +31,8 @@
|
|||||||
"qr-code-styling": "^1.6.0-rc.1",
|
"qr-code-styling": "^1.6.0-rc.1",
|
||||||
"selecto": "^1.13.0",
|
"selecto": "^1.13.0",
|
||||||
"throttle-debounce": "^3.0.1",
|
"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",
|
"vue-router": "^4.0.0-0",
|
||||||
"vuedraggable": "^4.1.0",
|
"vuedraggable": "^4.1.0",
|
||||||
"vuex": "^4.0.0-0"
|
"vuex": "^4.0.0-0"
|
||||||
@ -41,29 +42,17 @@
|
|||||||
"@types/throttle-debounce": "^2.1.0",
|
"@types/throttle-debounce": "^2.1.0",
|
||||||
"@typescript-eslint/eslint-plugin": "^7.1.0",
|
"@typescript-eslint/eslint-plugin": "^7.1.0",
|
||||||
"@typescript-eslint/parser": "^7.1.0",
|
"@typescript-eslint/parser": "^7.1.0",
|
||||||
"@vitejs/plugin-vue": "1.9.3",
|
"@vitejs/plugin-vue": "^5.0.4",
|
||||||
"@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",
|
|
||||||
"autoprefixer": "^10.3.1",
|
"autoprefixer": "^10.3.1",
|
||||||
"babel-eslint": "^10.1.0",
|
|
||||||
"cross-env": "^7.0.3",
|
"cross-env": "^7.0.3",
|
||||||
"esbuild-loader": "^2.13.1",
|
|
||||||
"eslint": "^7.29.0",
|
"eslint": "^7.29.0",
|
||||||
"eslint-config-alloy": "~4.1.0",
|
"eslint-config-alloy": "~4.1.0",
|
||||||
"eslint-plugin-vue": "^7.12.1",
|
"eslint-plugin-vue": "^7.12.1",
|
||||||
"less": "^4.1.1",
|
"less": "^4.1.1",
|
||||||
"typescript": "^5.3.3",
|
"typescript": "^5.2.2",
|
||||||
"unplugin-element-plus": "^0.7.1",
|
"unplugin-element-plus": "^0.7.1",
|
||||||
"vite": "2.6.4",
|
"vite": "^5.1.4",
|
||||||
"vite-plugin-compression": "^0.3.0",
|
"vue-tsc": "^1.8.27"
|
||||||
"vue-cli-plugin-norm": "~1.2.2",
|
|
||||||
"vue-eslint-parser": "^7.6.0",
|
|
||||||
"vue-tsc": "0.3.0"
|
|
||||||
},
|
},
|
||||||
"browserslist": [
|
"browserslist": [
|
||||||
"> 1%",
|
"> 1%",
|
||||||
|
@ -15,7 +15,8 @@ const exclude = ['settings', 'layout']
|
|||||||
const regex = RegExp('.*^(?!.*?(' + exclude.join('|') + ')).*\\.vue$')
|
const regex = RegExp('.*^(?!.*?(' + exclude.join('|') + ')).*\\.vue$')
|
||||||
|
|
||||||
// const requireComponent = require.context('.', true, /\.vue$/) // 找到components文件夹下以.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) {
|
function guide(Vue: Type.Object) {
|
||||||
for (const fileName in requireComponent) {
|
for (const fileName in requireComponent) {
|
||||||
|
6
src/types/env.d.ts
vendored
6
src/types/env.d.ts
vendored
@ -26,11 +26,11 @@ interface ImportMeta {
|
|||||||
// readonly env: ImportMetaEnv
|
// readonly env: ImportMetaEnv
|
||||||
|
|
||||||
|
|
||||||
glob(pattern: string): Record<
|
glob(pattern: string, { eager: boolean }): Record<
|
||||||
string,
|
string,
|
||||||
() => Promise<{
|
{
|
||||||
[key: string]: any
|
[key: string]: any
|
||||||
}>
|
}
|
||||||
>
|
>
|
||||||
|
|
||||||
globEager(pattern: string): Record<
|
globEager(pattern: string): Record<
|
||||||
|
Loading…
x
Reference in New Issue
Block a user