Skip to content

Commit 615c4fd

Browse files
committed
chore: upgrade deps
1 parent ada53d5 commit 615c4fd

File tree

5 files changed

+371
-423
lines changed

5 files changed

+371
-423
lines changed

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "unplugin-jsx-string",
33
"version": "0.5.3-0",
4-
"packageManager": "pnpm@7.1.9",
4+
"packageManager": "pnpm@7.5.1",
55
"description": "Converts JSX to HTML strings at compile time.",
66
"keywords": [
77
"unplugin",
@@ -77,32 +77,32 @@
7777
"prepublishOnly": "pnpm run build"
7878
},
7979
"dependencies": {
80-
"@babel/parser": "^7.18.6",
81-
"@babel/types": "^7.18.7",
80+
"@babel/parser": "^7.18.8",
81+
"@babel/types": "^7.18.8",
8282
"@rollup/pluginutils": "^4.2.1",
8383
"entities": "^4.3.1",
8484
"estree-walker": "^3.0.1",
8585
"jsesc": "^3.0.2",
8686
"magic-string": "^0.26.2",
87-
"unplugin": "^0.7.1"
87+
"unplugin": "^0.7.2"
8888
},
8989
"devDependencies": {
90-
"@sxzz/eslint-config": "^2.2.2",
90+
"@sxzz/eslint-config": "^2.3.1",
9191
"@types/benchmark": "^2.1.1",
9292
"@types/jsesc": "^3.0.1",
9393
"@types/node": "*",
94-
"@types/react": "^18.0.14",
94+
"@types/react": "^18.0.15",
9595
"benchmark": "^2.1.4",
9696
"bumpp": "^8.2.1",
9797
"eslint": "^8.19.0",
9898
"eslint-define-config": "^1.5.1",
9999
"fast-glob": "^3.2.11",
100100
"prettier": "^2.7.1",
101101
"tsup": "^6.1.3",
102-
"tsx": "^3.7.1",
102+
"tsx": "^3.8.0",
103103
"typescript": "^4.7.4",
104-
"vite": "^3.0.0-beta.6",
105-
"vitest": "^0.17.0"
104+
"vite": "^3.0.0",
105+
"vitest": "^0.18.0"
106106
},
107107
"engines": {
108108
"node": ">=14.19.0"

playground/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@
1111
"vercel-build": "pnpm run -C .. build && pnpm build"
1212
},
1313
"dependencies": {
14-
"@unocss/reset": "^0.43.0",
15-
"@vueuse/core": "^8.7.5",
16-
"unplugin-jsx-string": "workspace:*",
14+
"@unocss/reset": "^0.44.1",
15+
"@vueuse/core": "^8.9.2",
16+
"unplugin-jsx-string": "workspace:^0.5.3-0",
1717
"vue": "^3.2.37"
1818
},
1919
"devDependencies": {
2020
"@iconify-json/carbon": "^1.1.6",
21-
"@vitejs/plugin-vue": "^3.0.0-alpha.1",
21+
"@vitejs/plugin-vue": "^3.0.0",
2222
"@vue/runtime-core": "^3.2.37",
23-
"unocss": "^0.43.0",
23+
"unocss": "^0.44.1",
2424
"unplugin-auto-import": "^0.9.2",
25-
"unplugin-vue-components": "^0.21.0",
26-
"vite": "^3.0.0-beta.5"
25+
"unplugin-vue-components": "^0.21.1",
26+
"vite": "^3.0.0"
2727
}
2828
}

playground/src/typings/auto-import.d.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ declare global {
7676
const refThrottled: typeof import('@vueuse/core')['refThrottled']
7777
const refWithControl: typeof import('@vueuse/core')['refWithControl']
7878
const resolveComponent: typeof import('vue')['resolveComponent']
79+
const resolveRef: typeof import('@vueuse/core')['resolveRef']
80+
const resolveUnref: typeof import('@vueuse/core')['resolveUnref']
7981
const shallowReactive: typeof import('vue')['shallowReactive']
8082
const shallowReadonly: typeof import('vue')['shallowReadonly']
8183
const shallowRef: typeof import('vue')['shallowRef']
@@ -143,6 +145,7 @@ declare global {
143145
const useEyeDropper: typeof import('@vueuse/core')['useEyeDropper']
144146
const useFavicon: typeof import('@vueuse/core')['useFavicon']
145147
const useFetch: typeof import('@vueuse/core')['useFetch']
148+
const useFileDialog: typeof import('@vueuse/core')['useFileDialog']
146149
const useFileSystemAccess: typeof import('@vueuse/core')['useFileSystemAccess']
147150
const useFocus: typeof import('@vueuse/core')['useFocus']
148151
const useFocusWithin: typeof import('@vueuse/core')['useFocusWithin']
@@ -173,6 +176,7 @@ declare global {
173176
const useNavigatorLanguage: typeof import('@vueuse/core')['useNavigatorLanguage']
174177
const useNetwork: typeof import('@vueuse/core')['useNetwork']
175178
const useNow: typeof import('@vueuse/core')['useNow']
179+
const useObjectUrl: typeof import('@vueuse/core')['useObjectUrl']
176180
const useOffsetPagination: typeof import('@vueuse/core')['useOffsetPagination']
177181
const useOnline: typeof import('@vueuse/core')['useOnline']
178182
const usePageLeave: typeof import('@vueuse/core')['usePageLeave']
@@ -196,12 +200,14 @@ declare global {
196200
const useSlots: typeof import('vue')['useSlots']
197201
const useSpeechRecognition: typeof import('@vueuse/core')['useSpeechRecognition']
198202
const useSpeechSynthesis: typeof import('@vueuse/core')['useSpeechSynthesis']
203+
const useStepper: typeof import('@vueuse/core')['useStepper']
199204
const useStorage: typeof import('@vueuse/core')['useStorage']
200205
const useStorageAsync: typeof import('@vueuse/core')['useStorageAsync']
201206
const useStyleTag: typeof import('@vueuse/core')['useStyleTag']
202207
const useSwipe: typeof import('@vueuse/core')['useSwipe']
203208
const useTemplateRefsList: typeof import('@vueuse/core')['useTemplateRefsList']
204209
const useTextSelection: typeof import('@vueuse/core')['useTextSelection']
210+
const useTextareaAutosize: typeof import('@vueuse/core')['useTextareaAutosize']
205211
const useThrottle: typeof import('@vueuse/core')['useThrottle']
206212
const useThrottleFn: typeof import('@vueuse/core')['useThrottleFn']
207213
const useThrottledRefHistory: typeof import('@vueuse/core')['useThrottledRefHistory']
@@ -228,6 +234,7 @@ declare global {
228234
const useWindowScroll: typeof import('@vueuse/core')['useWindowScroll']
229235
const useWindowSize: typeof import('@vueuse/core')['useWindowSize']
230236
const watch: typeof import('vue')['watch']
237+
const watchArray: typeof import('@vueuse/core')['watchArray']
231238
const watchAtMost: typeof import('@vueuse/core')['watchAtMost']
232239
const watchDebounced: typeof import('@vueuse/core')['watchDebounced']
233240
const watchEffect: typeof import('vue')['watchEffect']
@@ -237,6 +244,7 @@ declare global {
237244
const watchPostEffect: typeof import('vue')['watchPostEffect']
238245
const watchSyncEffect: typeof import('vue')['watchSyncEffect']
239246
const watchThrottled: typeof import('@vueuse/core')['watchThrottled']
247+
const watchTriggerable: typeof import('@vueuse/core')['watchTriggerable']
240248
const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
241249
const whenever: typeof import('@vueuse/core')['whenever']
242250
}
@@ -319,6 +327,8 @@ declare module '@vue/runtime-core' {
319327
readonly refThrottled: UnwrapRef<typeof import('@vueuse/core')['refThrottled']>
320328
readonly refWithControl: UnwrapRef<typeof import('@vueuse/core')['refWithControl']>
321329
readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
330+
readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
331+
readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
322332
readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
323333
readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
324334
readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
@@ -386,6 +396,7 @@ declare module '@vue/runtime-core' {
386396
readonly useEyeDropper: UnwrapRef<typeof import('@vueuse/core')['useEyeDropper']>
387397
readonly useFavicon: UnwrapRef<typeof import('@vueuse/core')['useFavicon']>
388398
readonly useFetch: UnwrapRef<typeof import('@vueuse/core')['useFetch']>
399+
readonly useFileDialog: UnwrapRef<typeof import('@vueuse/core')['useFileDialog']>
389400
readonly useFileSystemAccess: UnwrapRef<typeof import('@vueuse/core')['useFileSystemAccess']>
390401
readonly useFocus: UnwrapRef<typeof import('@vueuse/core')['useFocus']>
391402
readonly useFocusWithin: UnwrapRef<typeof import('@vueuse/core')['useFocusWithin']>
@@ -416,6 +427,7 @@ declare module '@vue/runtime-core' {
416427
readonly useNavigatorLanguage: UnwrapRef<typeof import('@vueuse/core')['useNavigatorLanguage']>
417428
readonly useNetwork: UnwrapRef<typeof import('@vueuse/core')['useNetwork']>
418429
readonly useNow: UnwrapRef<typeof import('@vueuse/core')['useNow']>
430+
readonly useObjectUrl: UnwrapRef<typeof import('@vueuse/core')['useObjectUrl']>
419431
readonly useOffsetPagination: UnwrapRef<typeof import('@vueuse/core')['useOffsetPagination']>
420432
readonly useOnline: UnwrapRef<typeof import('@vueuse/core')['useOnline']>
421433
readonly usePageLeave: UnwrapRef<typeof import('@vueuse/core')['usePageLeave']>
@@ -439,12 +451,14 @@ declare module '@vue/runtime-core' {
439451
readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
440452
readonly useSpeechRecognition: UnwrapRef<typeof import('@vueuse/core')['useSpeechRecognition']>
441453
readonly useSpeechSynthesis: UnwrapRef<typeof import('@vueuse/core')['useSpeechSynthesis']>
454+
readonly useStepper: UnwrapRef<typeof import('@vueuse/core')['useStepper']>
442455
readonly useStorage: UnwrapRef<typeof import('@vueuse/core')['useStorage']>
443456
readonly useStorageAsync: UnwrapRef<typeof import('@vueuse/core')['useStorageAsync']>
444457
readonly useStyleTag: UnwrapRef<typeof import('@vueuse/core')['useStyleTag']>
445458
readonly useSwipe: UnwrapRef<typeof import('@vueuse/core')['useSwipe']>
446459
readonly useTemplateRefsList: UnwrapRef<typeof import('@vueuse/core')['useTemplateRefsList']>
447460
readonly useTextSelection: UnwrapRef<typeof import('@vueuse/core')['useTextSelection']>
461+
readonly useTextareaAutosize: UnwrapRef<typeof import('@vueuse/core')['useTextareaAutosize']>
448462
readonly useThrottle: UnwrapRef<typeof import('@vueuse/core')['useThrottle']>
449463
readonly useThrottleFn: UnwrapRef<typeof import('@vueuse/core')['useThrottleFn']>
450464
readonly useThrottledRefHistory: UnwrapRef<typeof import('@vueuse/core')['useThrottledRefHistory']>
@@ -471,6 +485,7 @@ declare module '@vue/runtime-core' {
471485
readonly useWindowScroll: UnwrapRef<typeof import('@vueuse/core')['useWindowScroll']>
472486
readonly useWindowSize: UnwrapRef<typeof import('@vueuse/core')['useWindowSize']>
473487
readonly watch: UnwrapRef<typeof import('vue')['watch']>
488+
readonly watchArray: UnwrapRef<typeof import('@vueuse/core')['watchArray']>
474489
readonly watchAtMost: UnwrapRef<typeof import('@vueuse/core')['watchAtMost']>
475490
readonly watchDebounced: UnwrapRef<typeof import('@vueuse/core')['watchDebounced']>
476491
readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
@@ -480,6 +495,7 @@ declare module '@vue/runtime-core' {
480495
readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
481496
readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
482497
readonly watchThrottled: UnwrapRef<typeof import('@vueuse/core')['watchThrottled']>
498+
readonly watchTriggerable: UnwrapRef<typeof import('@vueuse/core')['watchTriggerable']>
483499
readonly watchWithFilter: UnwrapRef<typeof import('@vueuse/core')['watchWithFilter']>
484500
readonly whenever: UnwrapRef<typeof import('@vueuse/core')['whenever']>
485501
}

playground/src/typings/components.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,4 @@ declare module '@vue/runtime-core' {
1111
AppHeader: typeof import('./../components/app-header.vue')['default']
1212
CodeInput: typeof import('./../components/code-input.vue')['default']
1313
}
14-
1514
}

0 commit comments

Comments
 (0)