Skip to content

Commit d5f9427

Browse files
chore(deps): update all non-major dependencies (#822)
1 parent b06d9a8 commit d5f9427

File tree

10 files changed

+617
-547
lines changed

10 files changed

+617
-547
lines changed

package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": "module",
44
"version": "7.3.2",
55
"private": true,
6-
"packageManager": "pnpm@10.5.2",
6+
"packageManager": "pnpm@10.6.1",
77
"description": "DevTools for Vue.js",
88
"author": "webfansplz",
99
"license": "MIT",
@@ -73,14 +73,14 @@
7373
"gen:vue-apis": "tsx ./scripts/vue-api-manifest.ts"
7474
},
7575
"devDependencies": {
76-
"@antfu/eslint-config": "^4.4.0",
76+
"@antfu/eslint-config": "^4.8.1",
7777
"@antfu/ni": "^23.3.1",
7878
"@arethetypeswrong/cli": "^0.17.4",
7979
"@clack/prompts": "^0.10.0",
80-
"@types/chrome": "^0.0.307",
80+
"@types/chrome": "^0.0.308",
8181
"@types/degit": "^2.8.6",
8282
"@types/fs-extra": "^11.0.4",
83-
"@types/node": "^22.13.9",
83+
"@types/node": "^22.13.10",
8484
"@typescript-eslint/parser": "^8.26.0",
8585
"@typescript-eslint/utils": "^8.26.0",
8686
"@unocss/eslint-plugin": "^66.0.0",
@@ -91,7 +91,7 @@
9191
"bumpp": "^10.0.3",
9292
"cross-env": "^7.0.3",
9393
"degit": "^2.8.4",
94-
"eslint": "^9.21.0",
94+
"eslint": "^9.22.0",
9595
"eslint-plugin-format": "^1.0.1",
9696
"eslint-vitest-rule-tester": "^1.1.0",
9797
"execa": "^9.5.2",
@@ -101,22 +101,22 @@
101101
"lint-staged": "^15.4.3",
102102
"npm-run-all2": "^7.0.2",
103103
"picocolors": "^1.1.1",
104-
"pnpm": "^10.5.2",
104+
"pnpm": "^10.6.1",
105105
"progress": "^2.0.3",
106106
"publint": "^0.3.8",
107107
"readdir-glob": "^2.0.1",
108108
"regex-extra": "^0.2.2",
109109
"semver": "^7.7.1",
110110
"simple-git-hooks": "^2.11.1",
111-
"taze": "^18.6.0",
111+
"taze": "^18.7.1",
112112
"tsup": "^8.4.0",
113113
"tsx": "^4.19.3",
114114
"turbo": "^2.4.4",
115115
"typescript": "^5.8.2",
116116
"unbuild": "^3.5.0",
117117
"unocss": "^66.0.0",
118-
"vite": "^6.2.0",
119-
"vitest": "^3.0.7",
118+
"vite": "^6.2.1",
119+
"vitest": "^3.0.8",
120120
"vue": "^3.5.13"
121121
},
122122
"simple-git-hooks": {

packages/applet/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
},
4242
"devDependencies": {
4343
"@types/lodash-es": "^4.17.12",
44-
"unplugin-vue": "^6.0.0",
44+
"unplugin-vue": "^6.0.1",
4545
"vite-plugin-dts": "catalog:",
4646
"vue": "catalog:",
4747
"vue-router": "catalog:"

packages/client/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"@vitejs/plugin-vue-jsx": "^4.1.1",
5555
"dayjs": "^1.11.13",
5656
"floating-vue": "catalog:",
57-
"ohash": "^2.0.10",
57+
"ohash": "^2.0.11",
5858
"pinia": "catalog:",
5959
"sass-embedded": "catalog:",
6060
"simple-git-hooks": "^2.11.1",

packages/devtools-kit/src/ctx/api.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export function createDevToolsApi(hooks: Hookable<DevToolsContextHooks & DevTool
9191
const instance = getComponentInstance(activeAppRecord.value, id)
9292

9393
if (instance)
94-
return !(instance?.type instanceof Function) ? instance.render.toString() : instance.type.toString()
94+
return !(typeof instance?.type === 'function') ? instance.render.toString() : instance.type.toString()
9595
},
9696
// scroll to component
9797
scrollToComponent(id: string) {

packages/electron/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"@vue/devtools-core": "workspace:^",
4040
"@vue/devtools-kit": "workspace:^",
4141
"@vue/devtools-shared": "workspace:^",
42-
"electron": "^33.4.2",
42+
"electron": "^33.4.3",
4343
"execa": "catalog:",
4444
"h3": "^1.15.1",
4545
"ip": "^2.0.1",

packages/playground/basic/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"dev": "vite"
88
},
99
"dependencies": {
10-
"@tanstack/vue-query": "^5.67.1",
10+
"@tanstack/vue-query": "^5.67.2",
1111
"@vueuse/core": "catalog:",
12-
"element-plus": "^2.9.5",
12+
"element-plus": "^2.9.6",
1313
"pinia": "catalog:",
1414
"unplugin-auto-import": "catalog:",
1515
"vee-validate": "^4.15.0",
@@ -18,8 +18,8 @@
1818
"vuex": "^4.1.0"
1919
},
2020
"devDependencies": {
21-
"@rollup/plugin-commonjs": "^28.0.2",
22-
"@tanstack/vue-query-devtools": "^5.67.1",
21+
"@rollup/plugin-commonjs": "^28.0.3",
22+
"@tanstack/vue-query-devtools": "^5.67.2",
2323
"@vitejs/plugin-vue": "catalog:",
2424
"@vue/devtools": "workspace:^",
2525
"sass-embedded": "catalog:",

packages/playground/webpack/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"@vue/cli-service": "~5.0.8",
2424
"@vue/devtools": "workspace:*",
2525
"@vue/devtools-api": "workspace:*",
26-
"eslint": "^9.21.0",
27-
"eslint-plugin-vue": "^9.32.0"
26+
"eslint": "^9.22.0",
27+
"eslint-plugin-vue": "^9.33.0"
2828
},
2929
"eslintConfig": {
3030
"env": {

packages/ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
},
4545
"dependencies": {
4646
"@vue/devtools-shared": "workspace:*",
47-
"@vueuse/components": "^12.7.0",
47+
"@vueuse/components": "^12.8.2",
4848
"@vueuse/core": "catalog:",
4949
"@vueuse/integrations": "catalog:",
5050
"colord": "catalog:",

0 commit comments

Comments
 (0)