Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/light-crews-melt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@tanstack/devtools-vite': minor
---

Bumps vite versions to include v8
4 changes: 2 additions & 2 deletions examples/preact/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
"zod": "^4.3.5"
},
"devDependencies": {
"@preact/preset-vite": "^2.10.2",
"@preact/preset-vite": "^2.10.3",
"@tanstack/devtools-ui": "0.5.0",
"@tanstack/devtools-vite": "0.5.5",
"sonda": "0.9.0",
"vite": "^7.1.7",
"vite": "^8.0.0",
"vite-plugin-inspect": "11.3.3"
},
"browserslist": {
Expand Down
4 changes: 2 additions & 2 deletions examples/preact/custom-devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"preact": "^10.28.0"
},
"devDependencies": {
"@preact/preset-vite": "^2.10.2",
"vite": "^7.1.7"
"@preact/preset-vite": "^2.10.3",
"vite": "^8.0.0"
},
"browserslist": {
"production": [
Expand Down
5 changes: 3 additions & 2 deletions examples/react/a11y-devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@
"react-dom": "^19.2.0"
},
"devDependencies": {
"@tanstack/devtools-vite": "0.5.5",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.0.4",
"vite": "^7.1.7"
"@vitejs/plugin-react": "^6.0.1",
"vite": "^8.0.0"
},
"browserslist": {
"production": [
Expand Down
2 changes: 1 addition & 1 deletion examples/react/a11y-devtools/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src"]
"include": ["src", "vite.config.ts"]
}
3 changes: 2 additions & 1 deletion examples/react/a11y-devtools/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import react from '@vitejs/plugin-react'
import { defineConfig } from 'vite'
import { devtools } from '@tanstack/devtools-vite'

export default defineConfig({
plugins: [react()],
plugins: [devtools(), react()],
})
4 changes: 2 additions & 2 deletions examples/react/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
"@tanstack/react-form-devtools": "^0.1.7",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.0.4",
"@vitejs/plugin-react": "^6.0.1",
"sonda": "0.9.0",
"vite": "^7.1.7",
"vite": "^8.0.0",
"vite-plugin-inspect": "11.3.3"
},
"browserslist": {
Expand Down
4 changes: 2 additions & 2 deletions examples/react/bundling-repro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@
"@types/node": "^22.15.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.0.4",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "^1.0.0",
"jsdom": "^27.0.0",
"typescript": "~5.9.2",
"vite": "^7.1.7",
"vite": "^8.0.0",
"vitest": "^3.2.4",
"web-vitals": "^5.1.0",
"wrangler": "^4.40.3"
Expand Down
4 changes: 2 additions & 2 deletions examples/react/custom-devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"devDependencies": {
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.0.4",
"vite": "^7.1.7"
"@vitejs/plugin-react": "^6.0.1",
"vite": "^8.0.0"
},
"browserslist": {
"production": [
Expand Down
2 changes: 1 addition & 1 deletion examples/react/drizzle/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"drizzle-orm": "^0.44.5",
"pg": "^8.16.3",
"typescript": "~5.9.2",
"vite": "^7.1.7",
"vite": "^8.0.0",
"vite-plugin-inspect": "11.3.3"
}
}
4 changes: 2 additions & 2 deletions examples/react/https/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
"@tanstack/devtools-vite": "0.5.5",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.0.4",
"vite": "^7.1.7",
"@vitejs/plugin-react": "^6.0.1",
"vite": "^8.0.0",
"vite-plugin-inspect": "11.3.3",
"vite-plugin-mkcert": "^1.17.8"
},
Expand Down
4 changes: 2 additions & 2 deletions examples/react/start/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
"@types/node": "^22.15.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.0.4",
"@vitejs/plugin-react": "^6.0.1",
"jsdom": "^27.0.0",
"typescript": "~5.9.2",
"vite": "^7.1.7",
"vite": "^8.0.0",
"vitest": "^3.2.4",
"web-vitals": "^5.1.0"
}
Expand Down
4 changes: 2 additions & 2 deletions examples/react/time-travel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"devDependencies": {
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.0.4",
"vite": "^7.1.7"
"@vitejs/plugin-react": "^6.0.1",
"vite": "^8.0.0"
},
"browserslist": {
"production": [
Expand Down
4 changes: 2 additions & 2 deletions examples/solid/a11y-devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
},
"devDependencies": {
"@tanstack/devtools-vite": "0.5.5",
"vite": "^7.1.7",
"vite": "^8.0.0",
"vite-plugin-inspect": "11.3.3",
"vite-plugin-solid": "^2.11.8"
"vite-plugin-solid": "^2.11.11"
},
"browserslist": {
"production": [
Expand Down
4 changes: 2 additions & 2 deletions examples/solid/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
},
"devDependencies": {
"@tanstack/devtools-vite": "0.5.5",
"vite": "^7.1.7",
"vite": "^8.0.0",
"vite-plugin-inspect": "11.3.3",
"vite-plugin-solid": "^2.11.8"
"vite-plugin-solid": "^2.11.11"
},
"browserslist": {
"production": [
Expand Down
4 changes: 2 additions & 2 deletions examples/solid/devtools-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
},
"devDependencies": {
"@tanstack/devtools-vite": "0.5.5",
"vite": "^7.1.7",
"vite": "^8.0.0",
"vite-plugin-inspect": "11.3.3",
"vite-plugin-solid": "^2.11.8"
"vite-plugin-solid": "^2.11.11"
},
"browserslist": {
"production": [
Expand Down
2 changes: 1 addition & 1 deletion examples/vue/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.1",
"typescript": "~5.9.2",
"vite": "^7.1.7"
"vite": "^8.0.0"
}
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"@tanstack/eslint-config": "0.3.2",
"@tanstack/intent": "^0.0.14",
"@tanstack/typedoc-config": "0.2.1",
"@tanstack/vite-config": "0.2.1",
"@tanstack/typedoc-config": "0.3.3",
"@tanstack/vite-config": "0.4.3",
"@testing-library/jest-dom": "^6.8.0",
"@types/node": "^22.15.2",
"eslint": "^9.36.0",
Expand All @@ -79,7 +79,7 @@
"size-limit": "^11.2.0",
"tinyglobby": "^0.2.15",
"typescript": "~5.9.2",
"vite": "^7.1.7",
"vite": "^8.0.0",
"vitest": "^3.2.4"
},
"overrides": {
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools-a11y/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
"goober": "^2.1.16"
},
"devDependencies": {
"vite-plugin-solid": "^2.11.8"
"vite-plugin-solid": "^2.11.11"
},
"peerDependencies": {
"@types/react": ">=17.0.0",
Expand Down
3 changes: 2 additions & 1 deletion packages/devtools-a11y/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@ import { defineConfig, mergeConfig } from 'vitest/config'
import { tanstackViteConfig } from '@tanstack/vite-config'
import solid from 'vite-plugin-solid'
import packageJson from './package.json'
import type { Plugin } from 'vite'

const config = defineConfig({
plugins: [
solid({
ssr: true,
}),
}) as any satisfies Plugin,
],
test: {
name: packageJson.name,
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@
"solid-js": ">=1.9.7"
},
"devDependencies": {
"vite-plugin-solid": "^2.11.8"
"vite-plugin-solid": "^2.11.11"
}
}
2 changes: 1 addition & 1 deletion packages/devtools-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"@tanstack/devtools": "workspace:^",
"tsup": "^8.5.0",
"tsup-preset-solid": "^2.2.0",
"vite-plugin-solid": "^2.11.8"
"vite-plugin-solid": "^2.11.11"
},
"peerDependencies": {
"@types/react": ">=17.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools-vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"build": "vite build"
},
"peerDependencies": {
"vite": "^6.0.0 || ^7.0.0"
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
},
"dependencies": {
"@babel/core": "^7.28.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,6 @@
"devDependencies": {
"tsup": "^8.5.0",
"tsup-preset-solid": "^2.2.0",
"vite-plugin-solid": "^2.11.8"
"vite-plugin-solid": "^2.11.11"
}
}
2 changes: 1 addition & 1 deletion packages/preact-devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"@tanstack/devtools": "workspace:*"
},
"devDependencies": {
"@preact/preset-vite": "^2.10.2",
"@preact/preset-vite": "^2.10.3",
"eslint-plugin-react-hooks": "^7.0.1",
"preact": "^10.28.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/react-devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"devDependencies": {
"@eslint-react/eslint-plugin": "^1.53.1",
"@types/react": "^19.2.0",
"@vitejs/plugin-react": "^5.0.4",
"@vitejs/plugin-react": "^6.0.1",
"eslint-plugin-react-compiler": "19.1.0-rc.2",
"eslint-plugin-react-hooks": "^7.0.1",
"react": "^19.2.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/solid-devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
},
"devDependencies": {
"solid-js": "^1.9.9",
"vite-plugin-solid": "^2.11.8"
"vite-plugin-solid": "^2.11.11"
},
"peerDependencies": {
"solid-js": ">=1.9.7"
Expand Down
Loading
Loading