chore: update deps

This commit is contained in:
Anthony Fu
2022-11-17 01:27:16 +08:00
parent 65aec3f101
commit 94b5fdddad
9 changed files with 249 additions and 238 deletions

View File

@@ -15,9 +15,9 @@
"up": "taze major -I"
},
"dependencies": {
"@unocss/reset": "^0.46.4",
"@unocss/reset": "^0.46.5",
"@vueuse/core": "^9.5.0",
"@vueuse/head": "^0.9.8",
"@vueuse/head": "^1.0.16",
"nprogress": "^0.2.0",
"pinia": "^2.0.23",
"vue": "^3.2.45",
@@ -26,37 +26,37 @@
"vue-router": "^4.1.6"
},
"devDependencies": {
"@antfu/eslint-config": "^0.29.4",
"@iconify-json/carbon": "^1.1.9",
"@antfu/eslint-config": "^0.30.1",
"@iconify-json/carbon": "^1.1.10",
"@intlify/vite-plugin-vue-i18n": "^6.0.3",
"@types/markdown-it-link-attributes": "^3.0.1",
"@types/nprogress": "^0.2.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/test-utils": "^2.2.1",
"@vue/test-utils": "^2.2.3",
"critters": "^0.0.16",
"cross-env": "^7.0.3",
"cypress": "^11.0.1",
"cypress": "^11.1.0",
"eslint": "^8.27.0",
"eslint-plugin-cypress": "^2.12.1",
"https-localhost": "^4.7.1",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-shiki": "^0.6.1",
"pnpm": "^7.15.0",
"pnpm": "^7.16.1",
"shiki": "^0.11.1",
"taze": "^0.8.3",
"typescript": "^4.8.4",
"unocss": "^0.46.4",
"taze": "^0.8.4",
"typescript": "^4.9.3",
"unocss": "^0.46.5",
"unplugin-auto-import": "^0.11.4",
"unplugin-vue-components": "^0.22.9",
"vite": "^3.2.3",
"vite-plugin-inspect": "^0.7.7",
"vite": "^3.2.4",
"vite-plugin-inspect": "^0.7.8",
"vite-plugin-pages": "^0.27.1",
"vite-plugin-pwa": "^0.13.3",
"vite-plugin-vue-layouts": "^0.7.0",
"vite-plugin-vue-markdown": "^0.22.1",
"vite-ssg": "^0.21.2",
"vite-ssg-sitemap": "^0.4.3",
"vitest": "^0.25.1",
"vitest": "^0.25.2",
"vue-tsc": "^1.0.9"
}
}

View File

@@ -7,6 +7,8 @@ export const install: UserModule = ({ isClient, router }) => {
if (to.path !== from.path)
NProgress.start()
})
router.afterEach(() => { NProgress.done() })
router.afterEach(() => {
NProgress.done()
})
}
}