chore: update deps
This commit is contained in:
parent
31a3a998a9
commit
a3227e1176
10
auto-imports.d.ts
vendored
10
auto-imports.d.ts
vendored
@ -40,6 +40,8 @@ declare global {
|
|||||||
const inject: typeof import('vue')['inject']
|
const inject: typeof import('vue')['inject']
|
||||||
const isDark: typeof import('./src/composables/dark')['isDark']
|
const isDark: typeof import('./src/composables/dark')['isDark']
|
||||||
const isDefined: typeof import('@vueuse/core')['isDefined']
|
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 isReadonly: typeof import('vue')['isReadonly']
|
||||||
const isRef: typeof import('vue')['isRef']
|
const isRef: typeof import('vue')['isRef']
|
||||||
const logicAnd: typeof import('@vueuse/core')['logicAnd']
|
const logicAnd: typeof import('@vueuse/core')['logicAnd']
|
||||||
@ -135,6 +137,7 @@ declare global {
|
|||||||
const useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia']
|
const useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia']
|
||||||
const useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility']
|
const useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility']
|
||||||
const useDraggable: typeof import('@vueuse/core')['useDraggable']
|
const useDraggable: typeof import('@vueuse/core')['useDraggable']
|
||||||
|
const useDropZone: typeof import('@vueuse/core')['useDropZone']
|
||||||
const useElementBounding: typeof import('@vueuse/core')['useElementBounding']
|
const useElementBounding: typeof import('@vueuse/core')['useElementBounding']
|
||||||
const useElementByPoint: typeof import('@vueuse/core')['useElementByPoint']
|
const useElementByPoint: typeof import('@vueuse/core')['useElementByPoint']
|
||||||
const useElementHover: typeof import('@vueuse/core')['useElementHover']
|
const useElementHover: typeof import('@vueuse/core')['useElementHover']
|
||||||
@ -238,6 +241,8 @@ declare global {
|
|||||||
const watchIgnorable: typeof import('@vueuse/core')['watchIgnorable']
|
const watchIgnorable: typeof import('@vueuse/core')['watchIgnorable']
|
||||||
const watchOnce: typeof import('@vueuse/core')['watchOnce']
|
const watchOnce: typeof import('@vueuse/core')['watchOnce']
|
||||||
const watchPausable: typeof import('@vueuse/core')['watchPausable']
|
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 watchThrottled: typeof import('@vueuse/core')['watchThrottled']
|
||||||
const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
|
const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
|
||||||
const whenever: typeof import('@vueuse/core')['whenever']
|
const whenever: typeof import('@vueuse/core')['whenever']
|
||||||
@ -284,6 +289,8 @@ declare module 'vue' {
|
|||||||
inject: typeof import('vue')['inject']
|
inject: typeof import('vue')['inject']
|
||||||
isDark: typeof import('./src/composables/dark')['isDark']
|
isDark: typeof import('./src/composables/dark')['isDark']
|
||||||
isDefined: typeof import('@vueuse/core')['isDefined']
|
isDefined: typeof import('@vueuse/core')['isDefined']
|
||||||
|
isProxy: typeof import('vue')['isProxy']
|
||||||
|
isReactive: typeof import('vue')['isReactive']
|
||||||
isReadonly: typeof import('vue')['isReadonly']
|
isReadonly: typeof import('vue')['isReadonly']
|
||||||
isRef: typeof import('vue')['isRef']
|
isRef: typeof import('vue')['isRef']
|
||||||
logicAnd: typeof import('@vueuse/core')['logicAnd']
|
logicAnd: typeof import('@vueuse/core')['logicAnd']
|
||||||
@ -379,6 +386,7 @@ declare module 'vue' {
|
|||||||
useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia']
|
useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia']
|
||||||
useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility']
|
useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility']
|
||||||
useDraggable: typeof import('@vueuse/core')['useDraggable']
|
useDraggable: typeof import('@vueuse/core')['useDraggable']
|
||||||
|
useDropZone: typeof import('@vueuse/core')['useDropZone']
|
||||||
useElementBounding: typeof import('@vueuse/core')['useElementBounding']
|
useElementBounding: typeof import('@vueuse/core')['useElementBounding']
|
||||||
useElementByPoint: typeof import('@vueuse/core')['useElementByPoint']
|
useElementByPoint: typeof import('@vueuse/core')['useElementByPoint']
|
||||||
useElementHover: typeof import('@vueuse/core')['useElementHover']
|
useElementHover: typeof import('@vueuse/core')['useElementHover']
|
||||||
@ -482,6 +490,8 @@ declare module 'vue' {
|
|||||||
watchIgnorable: typeof import('@vueuse/core')['watchIgnorable']
|
watchIgnorable: typeof import('@vueuse/core')['watchIgnorable']
|
||||||
watchOnce: typeof import('@vueuse/core')['watchOnce']
|
watchOnce: typeof import('@vueuse/core')['watchOnce']
|
||||||
watchPausable: typeof import('@vueuse/core')['watchPausable']
|
watchPausable: typeof import('@vueuse/core')['watchPausable']
|
||||||
|
watchPostEffect: typeof import('vue')['watchPostEffect']
|
||||||
|
watchSyncEffect: typeof import('vue')['watchSyncEffect']
|
||||||
watchThrottled: typeof import('@vueuse/core')['watchThrottled']
|
watchThrottled: typeof import('@vueuse/core')['watchThrottled']
|
||||||
watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
|
watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
|
||||||
whenever: typeof import('@vueuse/core')['whenever']
|
whenever: typeof import('@vueuse/core')['whenever']
|
||||||
|
|||||||
26
package.json
26
package.json
@ -11,27 +11,27 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@vueuse/core": "^8.6.0",
|
"@vueuse/core": "^8.6.0",
|
||||||
"vue": "^3.2.36",
|
"vue": "^3.2.37",
|
||||||
"vue-router": "^4.0.15"
|
"vue-router": "^4.0.16"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@antfu/eslint-config": "^0.25.1",
|
"@antfu/eslint-config": "^0.25.1",
|
||||||
"@iconify-json/carbon": "^1.1.5",
|
"@iconify-json/carbon": "^1.1.5",
|
||||||
"@types/node": "^17.0.39",
|
"@types/node": "^17.0.42",
|
||||||
"@unocss/reset": "^0.37.2",
|
"@unocss/reset": "^0.39.0",
|
||||||
"@vitejs/plugin-vue": "^2.3.3",
|
"@vitejs/plugin-vue": "^2.3.3",
|
||||||
"@vue/test-utils": "^2.0.0",
|
"@vue/test-utils": "^2.0.0",
|
||||||
"eslint": "^8.16.0",
|
"eslint": "^8.17.0",
|
||||||
"jsdom": "^19.0.0",
|
"jsdom": "^19.0.0",
|
||||||
"pnpm": "^7.1.7",
|
"pnpm": "^7.2.1",
|
||||||
"typescript": "^4.7.2",
|
"typescript": "^4.7.3",
|
||||||
"unocss": "^0.37.2",
|
"unocss": "^0.39.0",
|
||||||
"unplugin-auto-import": "^0.8.7",
|
"unplugin-auto-import": "^0.8.8",
|
||||||
"unplugin-vue-components": "^0.19.6",
|
"unplugin-vue-components": "^0.19.6",
|
||||||
"vite": "^2.9.9",
|
"vite": "^2.9.12",
|
||||||
"vite-plugin-pages": "^0.23.0",
|
"vite-plugin-pages": "^0.24.0",
|
||||||
"vitest": "^0.13.1",
|
"vitest": "^0.14.2",
|
||||||
"vue-tsc": "^0.36.0"
|
"vue-tsc": "^0.37.7"
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"extends": "@antfu"
|
"extends": "@antfu"
|
||||||
|
|||||||
767
pnpm-lock.yaml
generated
767
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -12,6 +12,7 @@
|
|||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
"noUnusedLocals": true,
|
"noUnusedLocals": true,
|
||||||
"strictNullChecks": true,
|
"strictNullChecks": true,
|
||||||
|
"allowJs": true,
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"types": [
|
"types": [
|
||||||
"vite/client",
|
"vite/client",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user