chore: update deps

This commit is contained in:
Anthony Fu 2022-03-30 22:59:35 +08:00
parent 8f62680475
commit 091fac3194
3 changed files with 388 additions and 536 deletions

View File

@ -13,7 +13,7 @@
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"@vueuse/core": "^8.1.1",
"@vueuse/core": "^8.2.0",
"@vueuse/head": "^0.7.5",
"nprogress": "^0.2.0",
"pinia": "^2.0.12",
@ -24,36 +24,36 @@
"vue-router": "^4.0.14"
},
"devDependencies": {
"@antfu/eslint-config": "^0.18.8",
"@antfu/eslint-config": "^0.19.1",
"@iconify-json/carbon": "^1.1.2",
"@intlify/vite-plugin-vue-i18n": "^3.3.1",
"@types/markdown-it-link-attributes": "^3.0.1",
"@types/nprogress": "^0.2.0",
"@unocss/reset": "^0.29.2",
"@vitejs/plugin-vue": "^2.2.4",
"@unocss/reset": "^0.30.8",
"@vitejs/plugin-vue": "^2.3.0",
"@vue/test-utils": "^2.0.0-rc.18",
"critters": "^0.0.16",
"cross-env": "^7.0.3",
"cypress": "^9.5.2",
"eslint": "^8.11.0",
"cypress": "^9.5.3",
"eslint": "^8.12.0",
"eslint-plugin-cypress": "^2.12.1",
"https-localhost": "^4.7.1",
"markdown-it-link-attributes": "^4.0.0",
"markdown-it-prism": "^2.2.3",
"pnpm": "^6.32.3",
"typescript": "^4.6.2",
"unocss": "^0.29.2",
"unplugin-auto-import": "^0.6.6",
"unplugin-vue-components": "^0.18.0",
"vite": "^2.8.6",
"typescript": "^4.6.3",
"unocss": "^0.30.8",
"unplugin-auto-import": "^0.6.8",
"unplugin-vue-components": "^0.18.5",
"vite": "^2.9.0",
"vite-plugin-inspect": "^0.4.3",
"vite-plugin-md": "^0.11.9",
"vite-plugin-md": "^0.12.4",
"vite-plugin-pages": "^0.22.0",
"vite-plugin-pwa": "^0.11.13",
"vite-plugin-vue-layouts": "^0.6.0",
"vite-ssg": "^0.19.0",
"vite-ssg-sitemap": "^0.2.0",
"vitest": "^0.7.0",
"vue-tsc": "^0.33.2"
"vitest": "^0.8.1",
"vue-tsc": "^0.33.9"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -20,6 +20,7 @@ declare global {
const createApp: typeof import('vue')['createApp']
const createEventHook: typeof import('@vueuse/core')['createEventHook']
const createGlobalState: typeof import('@vueuse/core')['createGlobalState']
const createInjectionState: typeof import('@vueuse/core')['createInjectionState']
const createReactiveFn: typeof import('@vueuse/core')['createReactiveFn']
const createSharedComposable: typeof import('@vueuse/core')['createSharedComposable']
const createUnrefFn: typeof import('@vueuse/core')['createUnrefFn']
@ -46,7 +47,6 @@ declare global {
const makeDestructurable: typeof import('@vueuse/core')['makeDestructurable']
const markRaw: typeof import('vue')['markRaw']
const nextTick: typeof import('vue')['nextTick']
const note: typeof import('@vueuse/core')['note']
const onActivated: typeof import('vue')['onActivated']
const onBeforeMount: typeof import('vue')['onBeforeMount']
const onBeforeUnmount: typeof import('vue')['onBeforeUnmount']