Skip to content

Commit 5b9db49

Browse files
authored
chore: update deps and fix lint errors (antfu-collective#41)
1 parent 616b5d7 commit 5b9db49

File tree

6 files changed

+1112
-721
lines changed

6 files changed

+1112
-721
lines changed

auto-imports.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ declare global {
3737
const h: typeof import('vue')['h']
3838
const ignorableWatch: typeof import('@vueuse/core')['ignorableWatch']
3939
const inject: typeof import('vue')['inject']
40+
const injectLocal: typeof import('@vueuse/core')['injectLocal']
4041
const isDark: typeof import('./src/composables/dark')['isDark']
4142
const isDefined: typeof import('@vueuse/core')['isDefined']
4243
const isProxy: typeof import('vue')['isProxy']
@@ -67,6 +68,7 @@ declare global {
6768
const onUpdated: typeof import('vue')['onUpdated']
6869
const pausableWatch: typeof import('@vueuse/core')['pausableWatch']
6970
const provide: typeof import('vue')['provide']
71+
const provideLocal: typeof import('@vueuse/core')['provideLocal']
7072
const reactify: typeof import('@vueuse/core')['reactify']
7173
const reactifyObject: typeof import('@vueuse/core')['reactifyObject']
7274
const reactive: typeof import('vue')['reactive']
@@ -324,6 +326,7 @@ declare module 'vue' {
324326
readonly h: UnwrapRef<typeof import('vue')['h']>
325327
readonly ignorableWatch: UnwrapRef<typeof import('@vueuse/core')['ignorableWatch']>
326328
readonly inject: UnwrapRef<typeof import('vue')['inject']>
329+
readonly injectLocal: UnwrapRef<typeof import('@vueuse/core')['injectLocal']>
327330
readonly isDark: UnwrapRef<typeof import('./src/composables/dark')['isDark']>
328331
readonly isDefined: UnwrapRef<typeof import('@vueuse/core')['isDefined']>
329332
readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
@@ -354,6 +357,7 @@ declare module 'vue' {
354357
readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
355358
readonly pausableWatch: UnwrapRef<typeof import('@vueuse/core')['pausableWatch']>
356359
readonly provide: UnwrapRef<typeof import('vue')['provide']>
360+
readonly provideLocal: UnwrapRef<typeof import('@vueuse/core')['provideLocal']>
357361
readonly reactify: UnwrapRef<typeof import('@vueuse/core')['reactify']>
358362
readonly reactifyObject: UnwrapRef<typeof import('@vueuse/core')['reactifyObject']>
359363
readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
@@ -605,6 +609,7 @@ declare module '@vue/runtime-core' {
605609
readonly h: UnwrapRef<typeof import('vue')['h']>
606610
readonly ignorableWatch: UnwrapRef<typeof import('@vueuse/core')['ignorableWatch']>
607611
readonly inject: UnwrapRef<typeof import('vue')['inject']>
612+
readonly injectLocal: UnwrapRef<typeof import('@vueuse/core')['injectLocal']>
608613
readonly isDark: UnwrapRef<typeof import('./src/composables/dark')['isDark']>
609614
readonly isDefined: UnwrapRef<typeof import('@vueuse/core')['isDefined']>
610615
readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
@@ -635,6 +640,7 @@ declare module '@vue/runtime-core' {
635640
readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
636641
readonly pausableWatch: UnwrapRef<typeof import('@vueuse/core')['pausableWatch']>
637642
readonly provide: UnwrapRef<typeof import('vue')['provide']>
643+
readonly provideLocal: UnwrapRef<typeof import('@vueuse/core')['provideLocal']>
638644
readonly reactify: UnwrapRef<typeof import('@vueuse/core')['reactify']>
639645
readonly reactifyObject: UnwrapRef<typeof import('@vueuse/core')['reactifyObject']>
640646
readonly reactive: UnwrapRef<typeof import('vue')['reactive']>

package.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"type": "module",
33
"private": true,
4-
"packageManager": "pnpm@8.8.0",
4+
"packageManager": "pnpm@8.9.2",
55
"scripts": {
66
"build": "vite build",
77
"dev": "vite --port 3333 --open",
@@ -13,36 +13,36 @@
1313
"postinstall": "npx simple-git-hooks"
1414
},
1515
"dependencies": {
16-
"@vueuse/core": "^10.4.1",
17-
"vue": "^3.3.4",
16+
"@vueuse/core": "^10.5.0",
17+
"vue": "^3.3.7",
1818
"vue-router": "^4.2.5"
1919
},
2020
"devDependencies": {
21-
"@antfu/eslint-config": "^1.0.0-beta.12",
21+
"@antfu/eslint-config": "^1.0.0-beta.28",
2222
"@iconify-json/carbon": "^1.1.21",
23-
"@types/node": "^20.7.1",
24-
"@unocss/eslint-config": "^0.56.4",
25-
"@unocss/eslint-plugin": "^0.56.4",
26-
"@unocss/reset": "^0.56.4",
27-
"@vitejs/plugin-vue": "^4.3.4",
28-
"@vue-macros/volar": "^0.15.0",
23+
"@types/node": "^20.8.8",
24+
"@unocss/eslint-config": "^0.57.1",
25+
"@unocss/eslint-plugin": "^0.57.1",
26+
"@unocss/reset": "^0.57.1",
27+
"@vitejs/plugin-vue": "^4.4.0",
28+
"@vue-macros/volar": "^0.17.1",
2929
"@vue/test-utils": "^2.4.1",
30-
"eslint": "^8.50.0",
31-
"eslint-define-config": "^1.23.0",
30+
"eslint": "^8.52.0",
31+
"eslint-define-config": "^1.24.1",
3232
"jsdom": "^22.1.0",
33-
"lint-staged": "^14.0.1",
34-
"pnpm": "^8.8.0",
33+
"lint-staged": "^15.0.2",
34+
"pnpm": "^8.9.2",
3535
"simple-git-hooks": "^2.9.0",
36-
"taze": "^0.11.3",
36+
"taze": "^0.11.4",
3737
"typescript": "^5.2.2",
38-
"unocss": "^0.56.4",
38+
"unocss": "^0.57.1",
3939
"unplugin-auto-import": "^0.16.6",
4040
"unplugin-vue-components": "^0.25.2",
41-
"unplugin-vue-macros": "^2.6.0",
42-
"vite": "^4.4.9",
41+
"unplugin-vue-macros": "^2.6.1",
42+
"vite": "^4.5.0",
4343
"vite-plugin-pages": "^0.31.0",
44-
"vitest": "^0.34.5",
45-
"vue-tsc": "^1.8.15"
44+
"vitest": "^0.34.6",
45+
"vue-tsc": "^1.8.20"
4646
},
4747
"simple-git-hooks": {
4848
"pre-commit": "pnpm lint-staged"

0 commit comments

Comments
 (0)