chore: update deps

This commit is contained in:
chansee97 2024-07-20 00:54:13 +08:00
parent 20d9fbef2e
commit 4d82a24d22
6 changed files with 30 additions and 6497 deletions

3
.gitignore vendored
View File

@ -27,3 +27,6 @@ stats.html
components.d.ts components.d.ts
auto-imports.d.ts auto-imports.d.ts
# Lock files
*-lock.yaml

View File

@ -50,6 +50,5 @@
"i18n-ally.keystyle": "nested", "i18n-ally.keystyle": "nested",
"i18n-ally.localesPaths": [ "i18n-ally.localesPaths": [
"locales" "locales"
], ]
"commentTranslate.source": "Google"
} }

View File

@ -2,4 +2,12 @@
import antfu from '@antfu/eslint-config' import antfu from '@antfu/eslint-config'
// https://github.com/antfu/eslint-config // https://github.com/antfu/eslint-config
export default antfu() export default antfu(
{
typescript: {
overrides: {
'ts/no-unused-expressions': ['error', { allowShortCircuit: true }],
},
},
},
)

View File

@ -1,7 +1,7 @@
{ {
"name": "nova-admin", "name": "nova-admin",
"type": "module", "type": "module",
"version": "0.9.5", "version": "0.9.6",
"private": true, "private": true,
"description": "a clean and concise back-end management template based on Vue3, Vite5, Typescript, and Naive UI.", "description": "a clean and concise back-end management template based on Vue3, Vite5, Typescript, and Naive UI.",
"author": { "author": {
@ -54,38 +54,38 @@
"@vueuse/core": "^10.11.0", "@vueuse/core": "^10.11.0",
"alova": "^2.21.3", "alova": "^2.21.3",
"colord": "^2.9.3", "colord": "^2.9.3",
"echarts": "^5.5.0", "echarts": "^5.5.1",
"md-editor-v3": "^4.15.2", "md-editor-v3": "^4.15.2",
"pinia": "^2.1.7", "pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1", "pinia-plugin-persistedstate": "^3.2.1",
"quill": "^2.0.2", "quill": "^2.0.2",
"radash": "^12.1.0", "radash": "^12.1.0",
"vue": "^3.4.29", "vue": "^3.4.33",
"vue-i18n": "^9.13.1", "vue-i18n": "^9.13.1",
"vue-router": "^4.3.3" "vue-router": "^4.4.0"
}, },
"devDependencies": { "devDependencies": {
"@antfu/eslint-config": "^2.21.1", "@antfu/eslint-config": "^2.23.0",
"@iconify-json/icon-park-outline": "^1.1.15", "@iconify-json/icon-park-outline": "^1.1.15",
"@iconify/vue": "^4.1.2", "@iconify/vue": "^4.1.2",
"@types/node": "^20.14.2", "@types/node": "^20.14.11",
"@vitejs/plugin-vue": "^5.0.5", "@vitejs/plugin-vue": "^5.0.5",
"@vitejs/plugin-vue-jsx": "^4.0.0", "@vitejs/plugin-vue-jsx": "^4.0.0",
"eslint": "^9.5.0", "eslint": "^9.7.0",
"lint-staged": "^15.2.7", "lint-staged": "^15.2.7",
"naive-ui": "^2.38.2", "naive-ui": "^2.39.0",
"sass": "^1.77.5", "sass": "^1.77.8",
"simple-git-hooks": "^2.11.1", "simple-git-hooks": "^2.11.1",
"typescript": "^5.4.5", "typescript": "^5.5.3",
"unocss": "^0.61.0", "unocss": "^0.61.5",
"unplugin-auto-import": "^0.17.6", "unplugin-auto-import": "^0.18.0",
"unplugin-icons": "^0.19.0", "unplugin-icons": "^0.19.0",
"unplugin-vue-components": "^0.27.0", "unplugin-vue-components": "^0.27.3",
"vite": "^5.3.1", "vite": "^5.3.4",
"vite-bundle-visualizer": "^1.2.1", "vite-bundle-visualizer": "^1.2.1",
"vite-plugin-compression": "^0.5.1", "vite-plugin-compression": "^0.5.1",
"vite-plugin-vue-devtools": "7.3.4", "vite-plugin-vue-devtools": "7.3.6",
"vue-tsc": "^2.0.21" "vue-tsc": "^2.0.26"
}, },
"simple-git-hooks": { "simple-git-hooks": {
"pre-commit": "pnpm lint-staged" "pre-commit": "pnpm lint-staged"

6478
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -62,6 +62,7 @@ export const useAuthStore = defineStore('auth-store', {
await this.handleLoginInfo(data) await this.handleLoginInfo(data)
} }
catch (e) { catch (e) {
console.warn('[Login Error]:', e)
} }
}, },