chore: update deps

This commit is contained in:
Anthony Fu 2022-04-10 10:28:44 +08:00
parent 672cc6afc5
commit d55eaca731
3 changed files with 259 additions and 253 deletions

View File

@ -24,27 +24,27 @@
"vue-router": "^4.0.14" "vue-router": "^4.0.14"
}, },
"devDependencies": { "devDependencies": {
"@antfu/eslint-config": "^0.20.0", "@antfu/eslint-config": "^0.20.2",
"@iconify-json/carbon": "^1.1.3", "@iconify-json/carbon": "^1.1.3",
"@intlify/vite-plugin-vue-i18n": "^4.0.0", "@intlify/vite-plugin-vue-i18n": "^4.0.0",
"@types/markdown-it-link-attributes": "^3.0.1", "@types/markdown-it-link-attributes": "^3.0.1",
"@types/nprogress": "^0.2.0", "@types/nprogress": "^0.2.0",
"@unocss/reset": "^0.30.11", "@unocss/reset": "^0.30.12",
"@vitejs/plugin-vue": "^2.3.1", "@vitejs/plugin-vue": "^2.3.1",
"@vue/test-utils": "^2.0.0-rc.19", "@vue/test-utils": "^2.0.0-rc.19",
"critters": "^0.0.16", "critters": "^0.0.16",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"cypress": "^9.5.3", "cypress": "^9.5.3",
"eslint": "^8.12.0", "eslint": "^8.13.0",
"eslint-plugin-cypress": "^2.12.1", "eslint-plugin-cypress": "^2.12.1",
"https-localhost": "^4.7.1", "https-localhost": "^4.7.1",
"markdown-it-link-attributes": "^4.0.0", "markdown-it-link-attributes": "^4.0.0",
"markdown-it-prism": "^2.2.3", "markdown-it-prism": "^2.2.3",
"pnpm": "^6.32.4", "pnpm": "^6.32.6",
"typescript": "^4.6.3", "typescript": "^4.6.3",
"unocss": "^0.30.11", "unocss": "^0.30.12",
"unplugin-auto-import": "^0.6.9", "unplugin-auto-import": "^0.7.0",
"unplugin-vue-components": "^0.18.5", "unplugin-vue-components": "^0.19.0",
"vite": "^2.9.1", "vite": "^2.9.1",
"vite-plugin-inspect": "^0.4.3", "vite-plugin-inspect": "^0.4.3",
"vite-plugin-md": "^0.12.4", "vite-plugin-md": "^0.12.4",
@ -52,8 +52,8 @@
"vite-plugin-pwa": "^0.11.13", "vite-plugin-pwa": "^0.11.13",
"vite-plugin-vue-layouts": "^0.6.0", "vite-plugin-vue-layouts": "^0.6.0",
"vite-ssg": "^0.19.2", "vite-ssg": "^0.19.2",
"vite-ssg-sitemap": "^0.2.0", "vite-ssg-sitemap": "^0.2.2",
"vitest": "^0.9.0", "vitest": "^0.9.2",
"vue-tsc": "^0.33.9" "vue-tsc": "^0.34.1"
} }
} }

File diff suppressed because it is too large Load Diff

4
src/components.d.ts vendored
View File

@ -2,11 +2,13 @@
// We suggest you to commit this file into source control // We suggest you to commit this file into source control
// Read more: https://github.com/vuejs/vue-next/pull/3399 // Read more: https://github.com/vuejs/vue-next/pull/3399
declare module 'vue' { declare module '@vue/runtime-core' {
export interface GlobalComponents { export interface GlobalComponents {
Counter: typeof import('./components/Counter.vue')['default'] Counter: typeof import('./components/Counter.vue')['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']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
} }
} }