chore: update deps

This commit is contained in:
Anthony Fu 2022-06-14 01:12:04 +08:00
parent 31a3a998a9
commit a3227e1176
4 changed files with 432 additions and 372 deletions

10
auto-imports.d.ts vendored
View File

@ -40,6 +40,8 @@ declare global {
const inject: typeof import('vue')['inject']
const isDark: typeof import('./src/composables/dark')['isDark']
const isDefined: typeof import('@vueuse/core')['isDefined']
const isProxy: typeof import('vue')['isProxy']
const isReactive: typeof import('vue')['isReactive']
const isReadonly: typeof import('vue')['isReadonly']
const isRef: typeof import('vue')['isRef']
const logicAnd: typeof import('@vueuse/core')['logicAnd']
@ -135,6 +137,7 @@ declare global {
const useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia']
const useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility']
const useDraggable: typeof import('@vueuse/core')['useDraggable']
const useDropZone: typeof import('@vueuse/core')['useDropZone']
const useElementBounding: typeof import('@vueuse/core')['useElementBounding']
const useElementByPoint: typeof import('@vueuse/core')['useElementByPoint']
const useElementHover: typeof import('@vueuse/core')['useElementHover']
@ -238,6 +241,8 @@ declare global {
const watchIgnorable: typeof import('@vueuse/core')['watchIgnorable']
const watchOnce: typeof import('@vueuse/core')['watchOnce']
const watchPausable: typeof import('@vueuse/core')['watchPausable']
const watchPostEffect: typeof import('vue')['watchPostEffect']
const watchSyncEffect: typeof import('vue')['watchSyncEffect']
const watchThrottled: typeof import('@vueuse/core')['watchThrottled']
const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
const whenever: typeof import('@vueuse/core')['whenever']
@ -284,6 +289,8 @@ declare module 'vue' {
inject: typeof import('vue')['inject']
isDark: typeof import('./src/composables/dark')['isDark']
isDefined: typeof import('@vueuse/core')['isDefined']
isProxy: typeof import('vue')['isProxy']
isReactive: typeof import('vue')['isReactive']
isReadonly: typeof import('vue')['isReadonly']
isRef: typeof import('vue')['isRef']
logicAnd: typeof import('@vueuse/core')['logicAnd']
@ -379,6 +386,7 @@ declare module 'vue' {
useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia']
useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility']
useDraggable: typeof import('@vueuse/core')['useDraggable']
useDropZone: typeof import('@vueuse/core')['useDropZone']
useElementBounding: typeof import('@vueuse/core')['useElementBounding']
useElementByPoint: typeof import('@vueuse/core')['useElementByPoint']
useElementHover: typeof import('@vueuse/core')['useElementHover']
@ -482,6 +490,8 @@ declare module 'vue' {
watchIgnorable: typeof import('@vueuse/core')['watchIgnorable']
watchOnce: typeof import('@vueuse/core')['watchOnce']
watchPausable: typeof import('@vueuse/core')['watchPausable']
watchPostEffect: typeof import('vue')['watchPostEffect']
watchSyncEffect: typeof import('vue')['watchSyncEffect']
watchThrottled: typeof import('@vueuse/core')['watchThrottled']
watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
whenever: typeof import('@vueuse/core')['whenever']

View File

@ -11,27 +11,27 @@
},
"dependencies": {
"@vueuse/core": "^8.6.0",
"vue": "^3.2.36",
"vue-router": "^4.0.15"
"vue": "^3.2.37",
"vue-router": "^4.0.16"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.1",
"@iconify-json/carbon": "^1.1.5",
"@types/node": "^17.0.39",
"@unocss/reset": "^0.37.2",
"@types/node": "^17.0.42",
"@unocss/reset": "^0.39.0",
"@vitejs/plugin-vue": "^2.3.3",
"@vue/test-utils": "^2.0.0",
"eslint": "^8.16.0",
"eslint": "^8.17.0",
"jsdom": "^19.0.0",
"pnpm": "^7.1.7",
"typescript": "^4.7.2",
"unocss": "^0.37.2",
"unplugin-auto-import": "^0.8.7",
"pnpm": "^7.2.1",
"typescript": "^4.7.3",
"unocss": "^0.39.0",
"unplugin-auto-import": "^0.8.8",
"unplugin-vue-components": "^0.19.6",
"vite": "^2.9.9",
"vite-plugin-pages": "^0.23.0",
"vitest": "^0.13.1",
"vue-tsc": "^0.36.0"
"vite": "^2.9.12",
"vite-plugin-pages": "^0.24.0",
"vitest": "^0.14.2",
"vue-tsc": "^0.37.7"
},
"eslintConfig": {
"extends": "@antfu"

767
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -12,6 +12,7 @@
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"types": [
"vite/client",