chore: 更新依赖

This commit is contained in:
hooray 2023-02-11 21:35:57 +08:00
parent 9d858bbe22
commit 9893b905db
3 changed files with 515 additions and 417 deletions

View File

@ -21,9 +21,9 @@
"@tinymce/tinymce-vue": "^5.0.0",
"@vueuse/core": "^9.12.0",
"@vueuse/integrations": "^9.12.0",
"axios": "^1.3.1",
"axios": "^1.3.2",
"dayjs": "^1.11.7",
"element-plus": "^2.2.28",
"element-plus": "^2.2.30",
"hotkeys-js": "^3.10.1",
"lodash-es": "^4.17.21",
"mitt": "^3.0.0",
@ -38,7 +38,7 @@
"vue-router": "^4.1.6"
},
"devDependencies": {
"@antfu/eslint-config": "^0.35.1",
"@antfu/eslint-config": "^0.35.2",
"@iconify-json/ep": "^1.1.8",
"@iconify/vue": "^4.1.0",
"@types/nprogress": "^0.2.0",
@ -49,26 +49,26 @@
"autoprefixer": "^10.4.13",
"bumpp": "^8.2.1",
"cz-git": "^1.4.1",
"eslint": "^8.33.0",
"eslint": "^8.34.0",
"esno": "^0.16.3",
"fs-extra": "^11.1.0",
"http-server": "^14.1.1",
"lint-staged": "^13.1.0",
"lint-staged": "^13.1.1",
"npm-run-all": "^4.1.5",
"plop": "^3.1.1",
"plop": "^3.1.2",
"postcss-html": "^1.5.0",
"sass": "^1.58.0",
"simple-git-hooks": "^2.8.1",
"stylelint": "^14.16.1",
"stylelint-config-standard": "^29.0.0",
"stylelint": "^15.1.0",
"stylelint-config-standard": "^30.0.1",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-scss": "^4.3.0",
"svgo": "^3.0.2",
"typescript": "^4.9.5",
"unplugin-auto-import": "^0.13.0",
"unplugin-auto-import": "^0.14.2",
"unplugin-vue-components": "^0.23.0",
"vite": "^4.0.4",
"vite": "^4.1.1",
"vite-plugin-banner": "^0.7.0",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-html": "^3.2.0",
@ -76,7 +76,7 @@
"vite-plugin-pages": "^0.28.0",
"vite-plugin-spritesmith": "^0.1.1",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-vue-inspector": "^3.2.1",
"vite-plugin-vue-inspector": "^3.3.2",
"vite-plugin-vue-layouts": "^0.6.0",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vue-tsc": "^1.0.24"

File diff suppressed because it is too large Load Diff

View File

@ -47,7 +47,6 @@ declare global {
const readonly: typeof import('vue')['readonly']
const ref: typeof import('vue')['ref']
const resolveComponent: typeof import('vue')['resolveComponent']
const resolveDirective: typeof import('vue')['resolveDirective']
const setActivePinia: typeof import('pinia')['setActivePinia']
const setMapStoreSuffix: typeof import('pinia')['setMapStoreSuffix']
const shallowReactive: typeof import('vue')['shallowReactive']
@ -75,3 +74,8 @@ declare global {
const watchPostEffect: typeof import('vue')['watchPostEffect']
const watchSyncEffect: typeof import('vue')['watchSyncEffect']
}
// for type re-export
declare global {
// @ts-ignore
export type { Component,ComponentPublicInstance,ComputedRef,InjectionKey,PropType,Ref,VNode } from 'vue'
}