Skip to content

Commit ba26cf6

Browse files
authored
chore: update deps (#129)
1 parent 67e4bc5 commit ba26cf6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+1980
-1218
lines changed

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"cSpell.words": [
33
"histoire",
4-
"pathe"
4+
"pathe",
5+
"taze"
56
],
67
"prettier.enable": false,
78
"editor.formatOnSave": false,

auto-imports.d.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ declare global {
8383
const refThrottled: typeof import('@vueuse/core')['refThrottled']
8484
const refWithControl: typeof import('@vueuse/core')['refWithControl']
8585
const resolveComponent: typeof import('vue')['resolveComponent']
86+
const resolveDirective: typeof import('vue')['resolveDirective']
8687
const resolveRef: typeof import('@vueuse/core')['resolveRef']
8788
const resolveUnref: typeof import('@vueuse/core')['resolveUnref']
8889
const shallowReactive: typeof import('vue')['shallowReactive']
@@ -111,10 +112,12 @@ declare global {
111112
const useArrayFilter: typeof import('@vueuse/core')['useArrayFilter']
112113
const useArrayFind: typeof import('@vueuse/core')['useArrayFind']
113114
const useArrayFindIndex: typeof import('@vueuse/core')['useArrayFindIndex']
115+
const useArrayFindLast: typeof import('@vueuse/core')['useArrayFindLast']
114116
const useArrayJoin: typeof import('@vueuse/core')['useArrayJoin']
115117
const useArrayMap: typeof import('@vueuse/core')['useArrayMap']
116118
const useArrayReduce: typeof import('@vueuse/core')['useArrayReduce']
117119
const useArraySome: typeof import('@vueuse/core')['useArraySome']
120+
const useArrayUnique: typeof import('@vueuse/core')['useArrayUnique']
118121
const useAsyncQueue: typeof import('@vueuse/core')['useAsyncQueue']
119122
const useAsyncState: typeof import('@vueuse/core')['useAsyncState']
120123
const useAttrs: typeof import('vue')['useAttrs']
@@ -200,12 +203,14 @@ declare global {
200203
const useParallax: typeof import('@vueuse/core')['useParallax']
201204
const usePermission: typeof import('@vueuse/core')['usePermission']
202205
const usePointer: typeof import('@vueuse/core')['usePointer']
206+
const usePointerLock: typeof import('@vueuse/core')['usePointerLock']
203207
const usePointerSwipe: typeof import('@vueuse/core')['usePointerSwipe']
204208
const usePreferredColorScheme: typeof import('@vueuse/core')['usePreferredColorScheme']
205209
const usePreferredContrast: typeof import('@vueuse/core')['usePreferredContrast']
206210
const usePreferredDark: typeof import('@vueuse/core')['usePreferredDark']
207211
const usePreferredLanguages: typeof import('@vueuse/core')['usePreferredLanguages']
208212
const usePreferredReducedMotion: typeof import('@vueuse/core')['usePreferredReducedMotion']
213+
const usePrevious: typeof import('@vueuse/core')['usePrevious']
209214
const useRafFn: typeof import('@vueuse/core')['useRafFn']
210215
const useRefHistory: typeof import('@vueuse/core')['useRefHistory']
211216
const useResizeObserver: typeof import('@vueuse/core')['useResizeObserver']
@@ -274,7 +279,7 @@ declare global {
274279
}
275280
// for vue template auto import
276281
import { UnwrapRef } from 'vue'
277-
declare module '@vue/runtime-core' {
282+
declare module 'vue' {
278283
interface ComponentCustomProperties {
279284
readonly $$: UnwrapRef<typeof import('vue/macros')['$$']>
280285
readonly $: UnwrapRef<typeof import('vue/macros')['$']>
@@ -358,6 +363,7 @@ declare module '@vue/runtime-core' {
358363
readonly refThrottled: UnwrapRef<typeof import('@vueuse/core')['refThrottled']>
359364
readonly refWithControl: UnwrapRef<typeof import('@vueuse/core')['refWithControl']>
360365
readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
366+
readonly resolveDirective: UnwrapRef<typeof import('vue')['resolveDirective']>
361367
readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
362368
readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
363369
readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
@@ -386,10 +392,12 @@ declare module '@vue/runtime-core' {
386392
readonly useArrayFilter: UnwrapRef<typeof import('@vueuse/core')['useArrayFilter']>
387393
readonly useArrayFind: UnwrapRef<typeof import('@vueuse/core')['useArrayFind']>
388394
readonly useArrayFindIndex: UnwrapRef<typeof import('@vueuse/core')['useArrayFindIndex']>
395+
readonly useArrayFindLast: UnwrapRef<typeof import('@vueuse/core')['useArrayFindLast']>
389396
readonly useArrayJoin: UnwrapRef<typeof import('@vueuse/core')['useArrayJoin']>
390397
readonly useArrayMap: UnwrapRef<typeof import('@vueuse/core')['useArrayMap']>
391398
readonly useArrayReduce: UnwrapRef<typeof import('@vueuse/core')['useArrayReduce']>
392399
readonly useArraySome: UnwrapRef<typeof import('@vueuse/core')['useArraySome']>
400+
readonly useArrayUnique: UnwrapRef<typeof import('@vueuse/core')['useArrayUnique']>
393401
readonly useAsyncQueue: UnwrapRef<typeof import('@vueuse/core')['useAsyncQueue']>
394402
readonly useAsyncState: UnwrapRef<typeof import('@vueuse/core')['useAsyncState']>
395403
readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
@@ -475,12 +483,14 @@ declare module '@vue/runtime-core' {
475483
readonly useParallax: UnwrapRef<typeof import('@vueuse/core')['useParallax']>
476484
readonly usePermission: UnwrapRef<typeof import('@vueuse/core')['usePermission']>
477485
readonly usePointer: UnwrapRef<typeof import('@vueuse/core')['usePointer']>
486+
readonly usePointerLock: UnwrapRef<typeof import('@vueuse/core')['usePointerLock']>
478487
readonly usePointerSwipe: UnwrapRef<typeof import('@vueuse/core')['usePointerSwipe']>
479488
readonly usePreferredColorScheme: UnwrapRef<typeof import('@vueuse/core')['usePreferredColorScheme']>
480489
readonly usePreferredContrast: UnwrapRef<typeof import('@vueuse/core')['usePreferredContrast']>
481490
readonly usePreferredDark: UnwrapRef<typeof import('@vueuse/core')['usePreferredDark']>
482491
readonly usePreferredLanguages: UnwrapRef<typeof import('@vueuse/core')['usePreferredLanguages']>
483492
readonly usePreferredReducedMotion: UnwrapRef<typeof import('@vueuse/core')['usePreferredReducedMotion']>
493+
readonly usePrevious: UnwrapRef<typeof import('@vueuse/core')['usePrevious']>
484494
readonly useRafFn: UnwrapRef<typeof import('@vueuse/core')['useRafFn']>
485495
readonly useRefHistory: UnwrapRef<typeof import('@vueuse/core')['useRefHistory']>
486496
readonly useResizeObserver: UnwrapRef<typeof import('@vueuse/core')['useResizeObserver']>

package.json

Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -10,40 +10,43 @@
1010
"preview:build": "pnpm run build && histoire preview",
1111
"lint": "eslint .",
1212
"lint:fix": "eslint . --fix",
13-
"create": "tsx script/create/index.ts create"
13+
"create": "tsx script/create/index.ts create",
14+
"up": "taze major -I",
15+
"postinstall": "npx simple-git-hooks"
1416
},
1517
"dependencies": {
1618
"element-plus": "npm:element-plus@latest",
1719
"vue": "^3.2.47"
1820
},
1921
"devDependencies": {
20-
"@antfu/eslint-config": "^0.35.2",
22+
"@antfu/eslint-config": "^0.38.4",
2123
"@histoire/plugin-vue": "0.15.7",
22-
"@types/inquirer": "^9.0.2",
23-
"@vitejs/plugin-vue": "^4.0.0",
24-
"@vueuse/core": "^9.3.1",
25-
"commander": "^9.4.1",
24+
"@types/inquirer": "^9.0.3",
25+
"@vitejs/plugin-vue": "^4.1.0",
26+
"@vueuse/core": "^9.13.0",
27+
"commander": "^9.5.0",
2628
"consola": "^2.15.3",
27-
"eslint": "^8.34.0",
29+
"eslint": "^8.38.0",
2830
"histoire": "0.15.7",
29-
"inquirer": "^9.1.3",
30-
"lint-staged": "^13.0.3",
31+
"inquirer": "^9.1.5",
32+
"lint-staged": "^13.2.1",
3133
"pathe": "^0.3.9",
32-
"sass": "^1.55.0",
34+
"sass": "^1.61.0",
3335
"simple-git-hooks": "^2.8.1",
34-
"tsx": "^3.10.4",
36+
"taze": "^0.9.1",
37+
"tsx": "^3.12.6",
3538
"typescript": "^4.9.5",
36-
"unplugin-auto-import": "^0.11.3",
37-
"unplugin-vue-components": "^0.22.9",
38-
"vite": "^4.1.1",
39-
"vue-tsc": "^1.0.24"
39+
"unplugin-auto-import": "^0.11.5",
40+
"unplugin-vue-components": "^0.22.12",
41+
"vite": "^4.2.1",
42+
"vue-tsc": "^1.2.0"
4043
},
4144
"simple-git-hooks": {
4245
"pre-commit": "npx lint-staged"
4346
},
4447
"lint-staged": {
4548
"*.{js,ts,tsx,vue,md}": [
46-
"eslint --cache --fix"
49+
"eslint --fix"
4750
]
4851
}
4952
}

0 commit comments

Comments
 (0)