chore: update deps

This commit is contained in:
Anthony Fu 2021-12-26 13:08:09 +08:00
parent 2e378f4342
commit 1f405bbc0d
5 changed files with 391 additions and 399 deletions

View File

@ -126,6 +126,8 @@ As this template is strongly opinionated, the following provides a curated list
## Try it now! ## Try it now!
> Vitesse requires Node >=14
### GitHub Template ### GitHub Template
[Create a repo from this template on GitHub](https://github.com/antfu/vitesse/generate). [Create a repo from this template on GitHub](https://github.com/antfu/vitesse/generate).

View File

@ -10,10 +10,10 @@
"typecheck": "vue-tsc --noEmit" "typecheck": "vue-tsc --noEmit"
}, },
"dependencies": { "dependencies": {
"@vueuse/core": "^7.3.0", "@vueuse/core": "^7.4.1",
"@vueuse/head": "^0.7.4", "@vueuse/head": "^0.7.4",
"nprogress": "^0.2.0", "nprogress": "^0.2.0",
"pinia": "^2.0.6", "pinia": "^2.0.9",
"prism-theme-vars": "^0.2.2", "prism-theme-vars": "^0.2.2",
"vue": "^3.2.26", "vue": "^3.2.26",
"vue-demi": "^0.12.1", "vue-demi": "^0.12.1",
@ -21,7 +21,7 @@
"vue-router": "^4.0.12" "vue-router": "^4.0.12"
}, },
"devDependencies": { "devDependencies": {
"@antfu/eslint-config": "^0.13.1", "@antfu/eslint-config": "^0.14.0",
"@iconify-json/carbon": "^1.0.12", "@iconify-json/carbon": "^1.0.12",
"@intlify/vite-plugin-vue-i18n": "^3.2.1", "@intlify/vite-plugin-vue-i18n": "^3.2.1",
"@types/markdown-it-link-attributes": "^3.0.1", "@types/markdown-it-link-attributes": "^3.0.1",
@ -32,24 +32,24 @@
"critters": "^0.0.15", "critters": "^0.0.15",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"cypress": "^9.1.1", "cypress": "^9.1.1",
"eslint": "^8.4.1", "eslint": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1", "eslint-plugin-cypress": "^2.12.1",
"https-localhost": "^4.7.0", "https-localhost": "^4.7.0",
"markdown-it-link-attributes": "^3.0.0", "markdown-it-link-attributes": "^4.0.0",
"markdown-it-prism": "^2.2.1", "markdown-it-prism": "^2.2.1",
"pnpm": "^6.24.1", "pnpm": "^6.24.3",
"typescript": "^4.5.4", "typescript": "^4.5.4",
"unplugin-auto-import": "^0.5.3", "unplugin-auto-import": "^0.5.4",
"unplugin-icons": "^0.12.23", "unplugin-icons": "^0.13.0",
"unplugin-vue-components": "^0.17.9", "unplugin-vue-components": "^0.17.11",
"vite": "^2.7.2", "vite": "^2.7.6",
"vite-plugin-inspect": "^0.3.11", "vite-plugin-inspect": "^0.3.11",
"vite-plugin-md": "^0.11.6", "vite-plugin-md": "^0.11.7",
"vite-plugin-pages": "^0.19.3", "vite-plugin-pages": "^0.19.7",
"vite-plugin-pwa": "^0.11.11", "vite-plugin-pwa": "^0.11.12",
"vite-plugin-vue-layouts": "^0.5.0", "vite-plugin-vue-layouts": "^0.5.0",
"vite-plugin-windicss": "^1.5.4", "vite-plugin-windicss": "^1.6.1",
"vite-ssg": "^0.17.0", "vite-ssg": "^0.17.2",
"vue-tsc": "^0.29.8" "vue-tsc": "^0.30.0"
} }
} }

File diff suppressed because it is too large Load Diff

View File

@ -59,6 +59,7 @@ declare global {
const readonly: typeof import('vue')['readonly'] const readonly: typeof import('vue')['readonly']
const ref: typeof import('vue')['ref'] const ref: typeof import('vue')['ref']
const refDefault: typeof import('@vueuse/core')['refDefault'] const refDefault: typeof import('@vueuse/core')['refDefault']
const resolveComponent: typeof import('vue')['resolveComponent']
const shallowReactive: typeof import('vue')['shallowReactive'] const shallowReactive: typeof import('vue')['shallowReactive']
const shallowReadonly: typeof import('vue')['shallowReadonly'] const shallowReadonly: typeof import('vue')['shallowReadonly']
const shallowRef: typeof import('vue')['shallowRef'] const shallowRef: typeof import('vue')['shallowRef']
@ -88,10 +89,12 @@ declare global {
const useBrowserLocation: typeof import('@vueuse/core')['useBrowserLocation'] const useBrowserLocation: typeof import('@vueuse/core')['useBrowserLocation']
const useClamp: typeof import('@vueuse/core')['useClamp'] const useClamp: typeof import('@vueuse/core')['useClamp']
const useClipboard: typeof import('@vueuse/core')['useClipboard'] const useClipboard: typeof import('@vueuse/core')['useClipboard']
const useColorMode: typeof import('@vueuse/core')['useColorMode']
const useConfirmDialog: typeof import('@vueuse/core')['useConfirmDialog'] const useConfirmDialog: typeof import('@vueuse/core')['useConfirmDialog']
const useCounter: typeof import('@vueuse/core')['useCounter'] const useCounter: typeof import('@vueuse/core')['useCounter']
const useCssModule: typeof import('vue')['useCssModule'] const useCssModule: typeof import('vue')['useCssModule']
const useCssVar: typeof import('@vueuse/core')['useCssVar'] const useCssVar: typeof import('@vueuse/core')['useCssVar']
const useCycleList: typeof import('@vueuse/core')['useCycleList']
const useDark: typeof import('@vueuse/core')['useDark'] const useDark: typeof import('@vueuse/core')['useDark']
const useDebounce: typeof import('@vueuse/core')['useDebounce'] const useDebounce: typeof import('@vueuse/core')['useDebounce']
const useDebouncedRefHistory: typeof import('@vueuse/core')['useDebouncedRefHistory'] const useDebouncedRefHistory: typeof import('@vueuse/core')['useDebouncedRefHistory']
@ -104,6 +107,7 @@ declare global {
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 useElementBounding: typeof import('@vueuse/core')['useElementBounding'] const useElementBounding: typeof import('@vueuse/core')['useElementBounding']
const useElementByPoint: typeof import('@vueuse/core')['useElementByPoint']
const useElementHover: typeof import('@vueuse/core')['useElementHover'] const useElementHover: typeof import('@vueuse/core')['useElementHover']
const useElementSize: typeof import('@vueuse/core')['useElementSize'] const useElementSize: typeof import('@vueuse/core')['useElementSize']
const useElementVisibility: typeof import('@vueuse/core')['useElementVisibility'] const useElementVisibility: typeof import('@vueuse/core')['useElementVisibility']
@ -137,6 +141,7 @@ declare global {
const useMouseInElement: typeof import('@vueuse/core')['useMouseInElement'] const useMouseInElement: typeof import('@vueuse/core')['useMouseInElement']
const useMousePressed: typeof import('@vueuse/core')['useMousePressed'] const useMousePressed: typeof import('@vueuse/core')['useMousePressed']
const useMutationObserver: typeof import('@vueuse/core')['useMutationObserver'] const useMutationObserver: typeof import('@vueuse/core')['useMutationObserver']
const useNavigatorLanguage: typeof import('@vueuse/core')['useNavigatorLanguage']
const useNetwork: typeof import('@vueuse/core')['useNetwork'] const useNetwork: typeof import('@vueuse/core')['useNetwork']
const useNow: typeof import('@vueuse/core')['useNow'] const useNow: typeof import('@vueuse/core')['useNow']
const useOnline: typeof import('@vueuse/core')['useOnline'] const useOnline: typeof import('@vueuse/core')['useOnline']
@ -153,6 +158,7 @@ declare global {
const useResizeObserver: typeof import('@vueuse/core')['useResizeObserver'] const useResizeObserver: typeof import('@vueuse/core')['useResizeObserver']
const useRoute: typeof import('vue-router')['useRoute'] const useRoute: typeof import('vue-router')['useRoute']
const useRouter: typeof import('vue-router')['useRouter'] const useRouter: typeof import('vue-router')['useRouter']
const useScreenSafeArea: typeof import('@vueuse/core')['useScreenSafeArea']
const useScriptTag: typeof import('@vueuse/core')['useScriptTag'] const useScriptTag: typeof import('@vueuse/core')['useScriptTag']
const useScroll: typeof import('@vueuse/core')['useScroll'] const useScroll: typeof import('@vueuse/core')['useScroll']
const useScrollLock: typeof import('@vueuse/core')['useScrollLock'] const useScrollLock: typeof import('@vueuse/core')['useScrollLock']
@ -162,8 +168,10 @@ declare global {
const useSpeechRecognition: typeof import('@vueuse/core')['useSpeechRecognition'] const useSpeechRecognition: typeof import('@vueuse/core')['useSpeechRecognition']
const useSpeechSynthesis: typeof import('@vueuse/core')['useSpeechSynthesis'] const useSpeechSynthesis: typeof import('@vueuse/core')['useSpeechSynthesis']
const useStorage: typeof import('@vueuse/core')['useStorage'] const useStorage: typeof import('@vueuse/core')['useStorage']
const useStorageAsync: typeof import('@vueuse/core')['useStorageAsync']
const useSwipe: typeof import('@vueuse/core')['useSwipe'] const useSwipe: typeof import('@vueuse/core')['useSwipe']
const useTemplateRefsList: typeof import('@vueuse/core')['useTemplateRefsList'] const useTemplateRefsList: typeof import('@vueuse/core')['useTemplateRefsList']
const useTextSelection: typeof import('@vueuse/core')['useTextSelection']
const useThrottle: typeof import('@vueuse/core')['useThrottle'] const useThrottle: typeof import('@vueuse/core')['useThrottle']
const useThrottledRefHistory: typeof import('@vueuse/core')['useThrottledRefHistory'] const useThrottledRefHistory: typeof import('@vueuse/core')['useThrottledRefHistory']
const useThrottleFn: typeof import('@vueuse/core')['useThrottleFn'] const useThrottleFn: typeof import('@vueuse/core')['useThrottleFn']

1
src/components.d.ts vendored
View File

@ -11,7 +11,6 @@ declare module 'vue' {
CarbonMoon: typeof import('~icons/carbon/moon')['default'] CarbonMoon: typeof import('~icons/carbon/moon')['default']
CarbonPedestrian: typeof import('~icons/carbon/pedestrian')['default'] CarbonPedestrian: typeof import('~icons/carbon/pedestrian')['default']
CarbonSun: typeof import('~icons/carbon/sun')['default'] CarbonSun: typeof import('~icons/carbon/sun')['default']
CarbonWarning: typeof import('~icons/carbon/warning')['default']
Footer: typeof import('./components/Footer.vue')['default'] Footer: typeof import('./components/Footer.vue')['default']
README: typeof import('./components/README.md')['default'] README: typeof import('./components/README.md')['default']
} }