Skip to content

Commit c46fc7b

Browse files
authored
Merge branch 'TanStack:alpha' into alpha
2 parents 32352e6 + 0f12171 commit c46fc7b

File tree

105 files changed

+277
-122
lines changed

Some content is hidden

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

105 files changed

+277
-122
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { defineConfig } from 'vite'
22
import react from '@vitejs/plugin-react'
3-
import { TanStackRouterVite } from '@tanstack/router-plugin/vite'
3+
import { tanstackRouter } from '@tanstack/router-plugin/vite'
44

55
// https://vitejs.dev/config/
66
export default defineConfig({
7-
plugins: [TanStackRouterVite({ target: 'react' }), react()],
7+
plugins: [tanstackRouter({ target: 'react' }), react()],
88
})
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { defineConfig } from 'vite'
22
import react from '@vitejs/plugin-react'
3-
import { TanStackRouterVite } from '@tanstack/router-plugin/vite'
3+
import { tanstackRouter } from '@tanstack/router-plugin/vite'
44

55
// https://vitejs.dev/config/
66
export default defineConfig({
77
plugins: [
8-
TanStackRouterVite({ target: 'react', autoCodeSplitting: true }),
8+
tanstackRouter({ target: 'react', autoCodeSplitting: true }),
99
react(),
1010
],
1111
})

e2e/react-router/js-only-file-based/vite.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { defineConfig } from 'vite'
22
import react from '@vitejs/plugin-react'
3-
import { TanStackRouterVite } from '@tanstack/router-plugin/vite'
3+
import { tanstackRouter } from '@tanstack/router-plugin/vite'
44

55
// https://vitejs.dev/config/
66
export default defineConfig({
77
plugins: [
8-
TanStackRouterVite({
8+
tanstackRouter({
99
target: 'react',
1010
disableTypes: true,
1111
disableManifestGeneration: true,
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { defineConfig } from 'vite'
22
import react from '@vitejs/plugin-react'
3-
import { TanStackRouterVite } from '@tanstack/router-plugin/vite'
3+
import { tanstackRouter } from '@tanstack/router-plugin/vite'
44

55
// https://vitejs.dev/config/
66
export default defineConfig({
7-
plugins: [TanStackRouterVite({ target: 'react' }), react()],
7+
plugins: [tanstackRouter({ target: 'react' }), react()],
88
})
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { defineConfig } from 'vite'
22
import solid from 'vite-plugin-solid'
3-
import { TanStackRouterVite } from '@tanstack/router-plugin/vite'
3+
import { tanstackRouter } from '@tanstack/router-plugin/vite'
44

55
// https://vitejs.dev/config/
66
export default defineConfig({
7-
plugins: [TanStackRouterVite({ target: 'solid' }), solid()],
7+
plugins: [tanstackRouter({ target: 'solid' }), solid()],
88
})
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { defineConfig } from 'vite'
22
import solid from 'vite-plugin-solid'
3-
import { TanStackRouterVite } from '@tanstack/router-plugin/vite'
3+
import { tanstackRouter } from '@tanstack/router-plugin/vite'
44

55
// https://vitejs.dev/config/
66
export default defineConfig({
77
plugins: [
8-
TanStackRouterVite({ target: 'solid', autoCodeSplitting: true }),
8+
tanstackRouter({ target: 'solid', autoCodeSplitting: true }),
99
solid(),
1010
],
1111
})
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { defineConfig } from 'vite'
22
import solid from 'vite-plugin-solid'
3-
import { TanStackRouterVite } from '@tanstack/router-plugin/vite'
3+
import { tanstackRouter } from '@tanstack/router-plugin/vite'
44

55
// https://vitejs.dev/config/
66
export default defineConfig({
7-
plugins: [TanStackRouterVite({ target: 'solid' }), solid()],
7+
plugins: [tanstackRouter({ target: 'solid' }), solid()],
88
})

examples/react/authenticated-routes-firebase/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"dependencies": {
1212
"@tanstack/react-router": "^1.121.0-alpha.1",
1313
"@tanstack/react-router-devtools": "^1.121.0-alpha.1",
14-
"@tanstack/router-plugin": "^1.121.0-alpha.1",
14+
"@tanstack/router-plugin": "^1.121.0-alpha.2",
1515
"autoprefixer": "^10.4.20",
1616
"firebase": "^11.4.0",
1717
"postcss": "^8.5.1",

examples/react/authenticated-routes-firebase/vite.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { defineConfig } from 'vite'
22
import react from '@vitejs/plugin-react'
3-
import { TanStackRouterVite } from '@tanstack/router-plugin/vite'
3+
import { tanstackRouter } from '@tanstack/router-plugin/vite'
44

55
// https://vitejs.dev/config/
66
export default defineConfig({
77
plugins: [
8-
TanStackRouterVite({
8+
tanstackRouter({
99
target: 'react',
1010
autoCodeSplitting: true,
1111
}),

examples/react/authenticated-routes/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"dependencies": {
1212
"@tanstack/react-router": "^1.121.0-alpha.1",
1313
"@tanstack/react-router-devtools": "^1.121.0-alpha.1",
14-
"@tanstack/router-plugin": "^1.121.0-alpha.1",
14+
"@tanstack/router-plugin": "^1.121.0-alpha.2",
1515
"react": "^19.0.0",
1616
"react-dom": "^19.0.0",
1717
"redaxios": "^0.5.1",

0 commit comments

Comments
 (0)