Skip to content

Commit bba5215

Browse files
committed
chore: update
2 parents 2cbc9b1 + a092ea5 commit bba5215

File tree

99 files changed

+6202
-5564
lines changed

Some content is hidden

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

99 files changed

+6202
-5564
lines changed

.github/renovate.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
],
99
"ignoreDeps": [
1010
"node",
11-
"nanoid"
11+
"nanoid",
12+
"vite-plugin-inspect"
1213
],
1314
"labels": [
1415
"dependencies"
@@ -30,6 +31,8 @@
3031
"pin": {
3132
"enabled": false
3233
},
33-
"rangeStrategy": "bump",
34-
"postUpdateOptions": ["pnpmDedupe"]
34+
"postUpdateOptions": [
35+
"pnpmDedupe"
36+
],
37+
"rangeStrategy": "bump"
3538
}

.github/workflows/autofix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ jobs:
3737
- name: Lint
3838
run: nr lint --fix
3939

40-
- uses: autofix-ci/action@551dded8c6cc8a1054039c8bc0b8b48c51dfc6ef
40+
- uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27

docs/getting-started/open-in-editor.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ This is a list of [supported editors](https://github.com/yyx990803/launch-editor
1414

1515
```ts
1616
import VueDevTools from 'vite-plugin-vue-devtools'
17+
1718
export default defineConfig({
1819
plugins: [
1920
VueDevTools({

docs/guide/browser-extension.md

Lines changed: 26 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Browser Extension
22

3+
## Chrome
4+
35
:::tip Compatibility Note
46
The v7 version of devtools only supports Vue3. If your application is still using Vue2, please install the [v6 version](https://chromewebstore.google.com/detail/vuejs-devtools/iaajmlceplecbljialhhkmedjlpdblhp?utm_source=ext_sidebar?utm_source=ext_sidebar). If you're still using v5 version, you can install it [here](https://chromewebstore.google.com/detail/vuejs-devtools-v5/hkddcnbhifppgmfgflgaelippbigjpjo).
57
:::
68

7-
## Chrome
8-
99
Remove or disable any existing versions and install the extension from [here](https://chromewebstore.google.com/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd?utm_source=ext_sidebar).
1010

1111
<div
@@ -24,6 +24,30 @@ Remove or disable any existing versions and install the extension from [here](ht
2424
</a>
2525
</div>
2626

27+
## Firefox
28+
29+
:::tip Compatibility Note
30+
The v7 version of devtools only supports Vue3. If your application is still using Vue2, please install the [v6 version](https://addons.mozilla.org/addon/vue-js-devtools-v6-legacy).
31+
:::
32+
33+
Remove or disable any existing versions and install the extension from [here](https://addons.mozilla.org/addon/vue-js-devtools).
34+
35+
<div
36+
class="w-83 group cursor-pointer list-none rounded pr-5 hover:b-$vp-c-brand-1"
37+
border="~ solid base" flex="~ flex-row items-center"
38+
>
39+
<a
40+
href="https://addons.mozilla.org/addon/vue-js-devtools"
41+
class="group text-! h-full w-full flex cursor-pointer list-none items-center rounded pr-5 hover:b-$vp-c-brand-1 text-$vp-c-text-1! decoration-none!"
42+
target="_blank"
43+
>
44+
<img src="/features/firefox-logo.svg" alt="Firefox Extension" class="mx-2 h-10">
45+
<p class="group-hover:text-$vp-c-brand-1">
46+
Install on Firefox
47+
</p>
48+
</a>
49+
</div>
50+
2751
## Edge (Arc/Brave)
2852

2953
...and other Chromium-based browsers.
@@ -45,7 +69,3 @@ This is the same as the Chrome extension, but you need to install it from the Ch
4569
</p>
4670
</a>
4771
</div>
48-
49-
## Firefox
50-
51-
We'll launch on the Firefox App Store once v7.x is stable.

docs/help/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
## Development Setup
66

7-
You will need [Node.js](https://nodejs.org) **version 18.12+**, and [PNPM](https://pnpm.io) **version 8+**.
7+
You will need [Node.js](https://nodejs.org) **version 18.19+**, and [PNPM](https://pnpm.io) **version 10+**.
88

99
We also recommend installing [@antfu/ni](https://github.com/antfu/ni) to help switching between repos using different package managers. `ni` also provides the handy `nr` command which running npm scripts easier.
1010

docs/help/faq.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ This is a list of [supported editors](https://github.com/yyx990803/launch-editor
1212

1313
```ts
1414
import VueDevTools from 'vite-plugin-vue-devtools'
15+
1516
export default defineConfig({
1617
plugins: [
1718
VueDevTools({

docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"devDependencies": {
1111
"@unocss/reset": "catalog:",
1212
"@vueuse/core": "catalog:",
13-
"unplugin-vue-components": "^28.4.1",
14-
"vitepress": "1.6.3",
13+
"unplugin-vue-components": "^29.0.0",
14+
"vitepress": "1.6.4",
1515
"vue": "catalog:"
1616
}
1717
}
Lines changed: 111 additions & 0 deletions
Loading

package.json

Lines changed: 44 additions & 33 deletions
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.6.1",
6+
"packageManager": "pnpm@10.15.1",
77
"description": "DevTools for Vue.js",
88
"author": "webfansplz",
99
"license": "MIT",
@@ -73,51 +73,62 @@
7373
"gen:vue-apis": "tsx ./scripts/vue-api-manifest.ts"
7474
},
7575
"devDependencies": {
76-
"@antfu/eslint-config": "^4.8.1",
77-
"@antfu/ni": "^23.3.1",
78-
"@arethetypeswrong/cli": "^0.17.4",
79-
"@clack/prompts": "^0.10.0",
80-
"@types/chrome": "^0.0.308",
76+
"@antfu/eslint-config": "^5.3.0",
77+
"@antfu/ni": "^25.0.0",
78+
"@arethetypeswrong/cli": "^0.18.2",
79+
"@clack/prompts": "^0.11.0",
80+
"@types/chrome": "^0.1.9",
8181
"@types/degit": "^2.8.6",
8282
"@types/fs-extra": "^11.0.4",
83-
"@types/node": "^22.13.10",
84-
"@typescript-eslint/parser": "^8.26.0",
85-
"@typescript-eslint/utils": "^8.26.0",
86-
"@unocss/eslint-plugin": "^66.0.0",
83+
"@types/node": "^24.3.1",
84+
"@typescript-eslint/parser": "^8.43.0",
85+
"@typescript-eslint/utils": "^8.43.0",
86+
"@unocss/eslint-plugin": "^66.5.1",
8787
"@vue/devtools-core": "workspace:^",
8888
"@vue/devtools-kit": "workspace:^",
8989
"@vue/test-utils": "^2.4.6",
9090
"archiver": "^7.0.1",
91-
"bumpp": "^10.0.3",
92-
"cross-env": "^7.0.3",
91+
"bumpp": "^10.2.3",
92+
"cross-env": "^10.0.0",
9393
"degit": "^2.8.4",
94-
"eslint": "^9.22.0",
94+
"eslint": "^9.35.0",
9595
"eslint-plugin-format": "^1.0.1",
96-
"eslint-vitest-rule-tester": "^1.1.0",
97-
"execa": "^9.5.2",
96+
"eslint-vitest-rule-tester": "^2.2.1",
97+
"execa": "^9.6.0",
9898
"fast-glob": "^3.3.3",
99-
"fs-extra": "^11.3.0",
100-
"jsdom": "^26.0.0",
101-
"lint-staged": "^15.4.3",
102-
"npm-run-all2": "^7.0.2",
99+
"fs-extra": "^11.3.1",
100+
"jsdom": "^26.1.0",
101+
"lint-staged": "^16.1.6",
102+
"npm-run-all2": "^8.0.4",
103103
"picocolors": "^1.1.1",
104-
"pnpm": "^10.6.1",
104+
"pnpm": "^10.15.1",
105105
"progress": "^2.0.3",
106-
"publint": "^0.3.8",
106+
"publint": "^0.3.12",
107107
"readdir-glob": "^2.0.1",
108108
"regex-extra": "^0.2.2",
109-
"semver": "^7.7.1",
110-
"simple-git-hooks": "^2.11.1",
111-
"taze": "^18.7.1",
112-
"tsup": "^8.4.0",
113-
"tsx": "^4.19.3",
114-
"turbo": "^2.4.4",
115-
"typescript": "^5.8.2",
116-
"unbuild": "^3.5.0",
117-
"unocss": "^66.0.0",
118-
"vite": "^6.2.1",
119-
"vitest": "^3.0.8",
120-
"vue": "^3.5.13"
109+
"semver": "^7.7.2",
110+
"simple-git-hooks": "^2.13.1",
111+
"taze": "^19.6.0",
112+
"tsdown": "^0.15.0",
113+
"tsup": "^8.5.0",
114+
"tsx": "^4.20.5",
115+
"turbo": "^2.5.6",
116+
"typescript": "^5.9.2",
117+
"unbuild": "3.6.1",
118+
"unocss": "^66.5.1",
119+
"vite": "^7.1.5",
120+
"vitest": "^3.2.4",
121+
"vue": "^3.5.21"
122+
},
123+
"pnpm": {
124+
"ignoredBuiltDependencies": [
125+
"core-js"
126+
],
127+
"onlyBuiltDependencies": [
128+
"electron",
129+
"esbuild",
130+
"vue-demi"
131+
]
121132
},
122133
"simple-git-hooks": {
123134
"pre-commit": "pnpm lint-staged"

packages/applet/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vue/devtools-applet",
33
"type": "module",
4-
"version": "7.7.2",
4+
"version": "8.0.1",
55
"author": "webfansplz",
66
"license": "MIT",
77
"repository": {
@@ -41,7 +41,7 @@
4141
},
4242
"devDependencies": {
4343
"@types/lodash-es": "^4.17.12",
44-
"unplugin-vue": "^6.0.1",
44+
"unplugin-vue": "^7.0.1",
4545
"vite-plugin-dts": "catalog:",
4646
"vue": "catalog:",
4747
"vue-router": "catalog:"

0 commit comments

Comments
 (0)