chore: update deps

This commit is contained in:
Anthony Fu 2021-11-02 10:11:03 +08:00
parent 360c9e167f
commit d23489d50c
3 changed files with 540 additions and 795 deletions

12
auto-imports.d.ts vendored
View File

@ -17,11 +17,15 @@ declare global {
const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']
const defineComponent: typeof import('vue')['defineComponent']
const eagerComputed: typeof import('@vueuse/core')['eagerComputed']
const effectScope: typeof import('vue')['effectScope']
const EffectScope: typeof import('vue')['EffectScope']
const extendRef: typeof import('@vueuse/core')['extendRef']
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
const getCurrentScope: typeof import('vue')['getCurrentScope']
const h: typeof import('vue')['h']
const ignorableWatch: typeof import('@vueuse/core')['ignorableWatch']
const inject: typeof import('vue')['inject']
const isDefined: typeof import('@vueuse/core')['isDefined']
const isReadonly: typeof import('vue')['isReadonly']
const isRef: typeof import('vue')['isRef']
const makeDestructurable: typeof import('@vueuse/core')['makeDestructurable']
@ -38,6 +42,7 @@ declare global {
const onMounted: typeof import('vue')['onMounted']
const onRenderTracked: typeof import('vue')['onRenderTracked']
const onRenderTriggered: typeof import('vue')['onRenderTriggered']
const onScopeDispose: typeof import('vue')['onScopeDispose']
const onServerPrefetch: typeof import('vue')['onServerPrefetch']
const onStartTyping: typeof import('@vueuse/core')['onStartTyping']
const onUnmounted: typeof import('vue')['onUnmounted']
@ -50,6 +55,7 @@ declare global {
const reactivePick: typeof import('@vueuse/core')['reactivePick']
const readonly: typeof import('vue')['readonly']
const ref: typeof import('vue')['ref']
const refDefault: typeof import('@vueuse/core')['refDefault']
const shallowReactive: typeof import('vue')['shallowReactive']
const shallowReadonly: typeof import('vue')['shallowReadonly']
const shallowRef: typeof import('vue')['shallowRef']
@ -70,10 +76,12 @@ declare global {
const until: typeof import('@vueuse/core')['until']
const useActiveElement: typeof import('@vueuse/core')['useActiveElement']
const useAsyncState: typeof import('@vueuse/core')['useAsyncState']
const useAttrs: typeof import('vue')['useAttrs']
const useBattery: typeof import('@vueuse/core')['useBattery']
const useBreakpoints: typeof import('@vueuse/core')['useBreakpoints']
const useBrowserLocation: typeof import('@vueuse/core')['useBrowserLocation']
const useClipboard: typeof import('@vueuse/core')['useClipboard']
const useConfirmDialog: typeof import('@vueuse/core')['useConfirmDialog']
const useCounter: typeof import('@vueuse/core')['useCounter']
const useCssModule: typeof import('vue')['useCssModule']
const useCssVar: typeof import('@vueuse/core')['useCssVar']
@ -85,9 +93,11 @@ declare global {
const useDeviceOrientation: typeof import('@vueuse/core')['useDeviceOrientation']
const useDevicePixelRatio: typeof import('@vueuse/core')['useDevicePixelRatio']
const useDevicesList: typeof import('@vueuse/core')['useDevicesList']
const useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia']
const useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility']
const useDraggable: typeof import('@vueuse/core')['useDraggable']
const useElementBounding: typeof import('@vueuse/core')['useElementBounding']
const useElementHover: typeof import('@vueuse/core')['useElementHover']
const useElementSize: typeof import('@vueuse/core')['useElementSize']
const useElementVisibility: typeof import('@vueuse/core')['useElementVisibility']
const useEventBus: typeof import('@vueuse/core')['useEventBus']
@ -132,7 +142,9 @@ declare global {
const useScroll: typeof import('@vueuse/core')['useScroll']
const useSessionStorage: typeof import('@vueuse/core')['useSessionStorage']
const useShare: typeof import('@vueuse/core')['useShare']
const useSlots: typeof import('vue')['useSlots']
const useSpeechRecognition: typeof import('@vueuse/core')['useSpeechRecognition']
const useSpeechSynthesis: typeof import('@vueuse/core')['useSpeechSynthesis']
const useStorage: typeof import('@vueuse/core')['useStorage']
const useSwipe: typeof import('@vueuse/core')['useSwipe']
const useTemplateRefsList: typeof import('@vueuse/core')['useTemplateRefsList']

View File

@ -6,29 +6,27 @@
"preview": "vite preview"
},
"dependencies": {
"@vueuse/core": "^6.5.3",
"vue": "^3.2.19",
"vue-demi": "^0.11.4",
"vue-router": "^4.0.11"
"@vueuse/core": "^6.7.4",
"vue": "^3.2.20",
"vue-demi": "^0.12.0",
"vue-router": "^4.0.12"
},
"devDependencies": {
"@antfu/eslint-config": "^0.9.0",
"@iconify-json/carbon": "^1.0.3",
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@antfu/eslint-config": "^0.10.0",
"@iconify-json/carbon": "^1.0.8",
"@types/node": "^16.11.6",
"@unocss/preset-icons": "^0.4.9",
"@unocss/reset": "^0.4.9",
"@vitejs/plugin-vue": "^1.9.2",
"@vue/compiler-sfc": "^3.2.19",
"@vitejs/plugin-vue": "^1.9.4",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"pnpm": "^6.16.0",
"typescript": "^4.4.3",
"eslint": "^8.1.0",
"pnpm": "^6.20.1",
"typescript": "^4.4.4",
"unocss": "^0.4.9",
"unplugin-auto-import": "^0.4.10",
"unplugin-icons": "^0.12.3",
"unplugin-vue-components": "^0.15.6",
"vite": "^2.6.2",
"vite-plugin-pages": "^0.18.1"
"unplugin-auto-import": "^0.4.13",
"unplugin-icons": "^0.12.17",
"unplugin-vue-components": "^0.17.0",
"vite": "^2.6.13",
"vite-plugin-pages": "^0.18.2"
}
}

1289
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff