Skip to content

Commit 67348ed

Browse files
committed
chore: review fixes
1 parent 537165d commit 67348ed

File tree

10 files changed

+28
-67
lines changed

10 files changed

+28
-67
lines changed
File renamed without changes.
File renamed without changes.

examples/react/basic/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<meta name="theme-color" content="#000000" />
88
<script src="https://unpkg.com/react-scan/dist/auto.global.js"></script>
9-
<title>TanStack Devtools Example</title>
9+
<title>Basic Example - TanStack Devtools</title>
1010
</head>
1111
<body>
1212
<noscript>You need to enable JavaScript to run this app.</noscript>

examples/react/basic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"devDependencies": {
2121
"@types/react": "^19.1.2",
2222
"@types/react-dom": "^19.1.2",
23-
"@vitejs/plugin-react": "^4.4.1",
23+
"@vitejs/plugin-react": "^4.5.2",
2424
"vite": "^7.0.6"
2525
},
2626
"browserslist": {

examples/react/custom-devtools/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<meta name="theme-color" content="#000000" />
88

9-
<title>TanStack Form React Simple Example App</title>
9+
<title>Custom Devtools - TanStack Devtools</title>
1010
</head>
1111
<body>
1212
<noscript>You need to enable JavaScript to run this app.</noscript>

examples/react/custom-devtools/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
"test:types": "tsc"
1010
},
1111
"dependencies": {
12-
"@tanstack/react-devtools": "https://pkg.pr.new/TanStack/devtools/@tanstack/react-devtools@0a0219b",
1312
"@tanstack/devtools-event-client": "https://pkg.pr.new/TanStack/devtools/@tanstack/devtools-event-client@11",
14-
"react": "^19.0.0",
15-
"react-dom": "^19.0.0"
13+
"@tanstack/react-devtools": "https://pkg.pr.new/TanStack/devtools/@tanstack/react-devtools@0a0219b",
14+
"react": "^19.1.0",
15+
"react-dom": "^19.1.0"
1616
},
1717
"devDependencies": {
18-
"@types/react": "^19.0.7",
19-
"@types/react-dom": "^19.0.3",
18+
"@types/react": "^19.1.2",
19+
"@types/react-dom": "^19.1.2",
2020
"@vitejs/plugin-react": "^4.5.2",
2121
"vite": "^7.0.6"
2222
},

examples/react/custom-devtools/src/CustomDevtoolsPanel.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ export default function CustomDevtoolPanel() {
1616

1717
return (
1818
<div>
19-
<div>{state?.count}</div>
20-
<div>{JSON.stringify(state?.history)}</div>
19+
<div>counter state: {state?.count}</div>
20+
<div>counter history: {JSON.stringify(state?.history)}</div>
2121
</div>
2222
)
2323
}

examples/react/start/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"@testing-library/react": "^16.2.0",
3737
"@types/react": "^19.1.2",
3838
"@types/react-dom": "^19.1.2",
39-
"@vitejs/plugin-react": "^4.4.1",
39+
"@vitejs/plugin-react": "^4.5.2",
4040
"jsdom": "^26.1.0",
4141
"typescript": "5.8.3",
4242
"vite": "^7.0.6",

packages/react-devtools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"devDependencies": {
5959
"@eslint-react/eslint-plugin": "^1.48.5",
6060
"@types/react": "^19.1.2",
61-
"@vitejs/plugin-react": "^4.4.1",
61+
"@vitejs/plugin-react": "^4.5.2",
6262
"eslint-plugin-react-compiler": "19.1.0-rc.1",
6363
"eslint-plugin-react-hooks": "^5.2.0",
6464
"react": "^19.1.0"

pnpm-lock.yaml

Lines changed: 16 additions & 55 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)