Skip to content

Commit 8fbdfaf

Browse files
Merge branch 'main' into feat/api-inspect-state
2 parents a53a894 + 7f7982d commit 8fbdfaf

File tree

181 files changed

+7949
-4306
lines changed

Some content is hidden

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

181 files changed

+7949
-4306
lines changed

.eslintignore

Lines changed: 0 additions & 9 deletions
This file was deleted.

.github/workflows/autofix.yml

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

38-
- uses: autofix-ci/action@ea32e3a12414e6d3183163c3424a7d7a8631ad84
38+
- uses: autofix-ci/action@ff86a557419858bb967097bfc916833f5647fa8c

.github/workflows/pkg.pr.new.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Publish Any Commit
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- '**'
8+
tags:
9+
- '!**'
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0
20+
21+
- run: corepack enable
22+
23+
- name: Set node
24+
uses: actions/setup-node@v4
25+
with:
26+
node-version: lts/*
27+
cache: pnpm
28+
29+
- name: Install
30+
run: pnpm install
31+
32+
- name: Build
33+
run: pnpm build
34+
35+
- name: Release
36+
run: pnpm dlx pkg-pr-new publish --compact --pnpm './packages/{core,devtools,devtools-api,devtools-kit,vite}'

.vscode/settings.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
2-
"eslint.experimental.useFlatConfig": true,
2+
"eslint.useFlatConfig": true,
3+
"eslint.options": {
4+
"flags": [
5+
"unstable_ts_config"
6+
]
7+
},
38
"prettier.enable": false,
49
"editor.codeActionsOnSave": {
510
"source.fixAll": "explicit"

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@
99

1010
## Getting Started
1111

12-
Please follow the documentation at [devtools-next.vuejs.org](https://devtools-next.vuejs.org).
12+
- [Chrome Extension](https://chromewebstore.google.com/detail/vuejs-devtools-beta/ljjemllljcmogpfapbkkighbhhppjdbg)
13+
- [Install as Vite plugin](https://devtools.vuejs.org/guide/vite-plugin)
14+
- [Standalone App](https://devtools.vuejs.org/guide/standalone)
15+
16+
For more details, check out the documentation at [devtools.vuejs.org](https://devtools.vuejs.org).
1317

1418
## Sponsors
1519

@@ -21,7 +25,7 @@ Please follow the documentation at [devtools-next.vuejs.org](https://devtools-ne
2125

2226
## Contribution
2327

24-
Please make sure to read the [Contributing Guide](https://devtools-next.vuejs.org/help/contributing) before making a pull request.
28+
Please make sure to read the [Contributing Guide](https://devtools.vuejs.org/help/contributing) before making a pull request.
2529

2630
Thank you to all the people who already contributed to Vue DevTools!
2731

bump.config.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { defineConfig } from 'bumpp'
2+
import fg from 'fast-glob'
3+
4+
export default defineConfig({
5+
files: fg.sync(['./packages/*/package.json'], {
6+
ignore: ['./packages/*-extension/package.json'],
7+
}),
8+
})

docs/.vitepress/components/UseModeList.vue

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ const list = [
1414
link: '/guide/standalone',
1515
},
1616
{
17-
name: 'Chrome Extension',
17+
name: 'Chrome Extension (Beta)',
1818
logo: '/features/chrome-logo.svg',
19-
link: '/guide/browser-extension',
20-
disabled: true,
19+
link: 'https://chromewebstore.google.com/detail/vuejs-devtools-beta/ljjemllljcmogpfapbkkighbhhppjdbg?utm_source=ext_sidebar',
20+
blank: true,
2121
},
2222
]
2323
</script>
@@ -36,6 +36,7 @@ const list = [
3636
>
3737
<a
3838
:href="item.link"
39+
:target="item.blank ? '_blank' : '_self'"
3940
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!"
4041
>
4142
<img :src="item.logo" :alt="item.name" class="mx-2 h-10">

docs/.vitepress/config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ const GETTING_STARTED: DefaultTheme.NavItemWithLink[] = [
77
{ text: 'Introduction', link: '/getting-started/introduction' },
88
{ text: 'Installation', link: '/getting-started/installation' },
99
{ text: 'Features', link: '/getting-started/features' },
10+
{ text: 'Open in editor', link: '/getting-started/open-in-editor' },
1011
]
1112

1213
const GUIDES: DefaultTheme.NavItemWithLink[] = [
@@ -66,7 +67,7 @@ export default defineConfig({
6667
},
6768
{
6869
text: 'Playground',
69-
link: 'https://stackblitz.com/github/vuejs/create-vue-templates/tree/main/devtools',
70+
link: 'https://stackblitz.com/github/vuejs/create-vue-templates/tree/main/devtools-router-pinia',
7071
},
7172
],
7273

docs/.vitepress/theme/style.css

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -92,17 +92,9 @@
9292

9393
:root {
9494
--vp-home-hero-name-color: transparent;
95-
--vp-home-hero-name-background: -webkit-linear-gradient(
96-
120deg,
97-
#42d392 30%,
98-
#41d1ff
99-
);
100-
101-
--vp-home-hero-image-background-image: linear-gradient(
102-
-45deg,
103-
#4acf93 50%,
104-
#c3edda 50%
105-
);
95+
--vp-home-hero-name-background: -webkit-linear-gradient(120deg, #42d392 30%, #41d1ff);
96+
97+
--vp-home-hero-image-background-image: linear-gradient(-45deg, #4acf93 50%, #c3edda 50%);
10698
--vp-home-hero-image-filter: blur(44px);
10799
}
108100

docs/getting-started/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ There are multiple options to add this tool to your projects, ensuring that it f
99
## Notice
1010

1111
:::warning Compatibility Note
12-
The DevTools is only compatible with Vue 3. If you are still using Vue2, use [vue-devtools](https://devtools.vuejs.org/) instead.
12+
The DevTools is only compatible with Vue 3. If you are still using Vue2, use [vue-devtools](https://devtools-v6.vuejs.org/) instead.
1313
:::
1414

1515
:::tip Recommendation

0 commit comments

Comments
 (0)