Skip to content

Commit 10bffc7

Browse files
committed
update site to alpha
1 parent be5ac4a commit 10bffc7

54 files changed

Lines changed: 3390 additions & 1297 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
/* eslint-disable */
2+
3+
// @ts-nocheck
4+
5+
// noinspection JSUnusedGlobalSymbols
6+
7+
// This file was automatically generated by TanStack Router.
8+
// You should NOT make any changes in this file as it will be overwritten.
9+
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
10+
11+
// Import Routes
12+
13+
import type {
14+
FileRoutesByPath,
15+
CreateServerFileRoute,
16+
} from '@tanstack/react-start/server'
17+
import {
18+
createServerRoute,
19+
createServerFileRoute,
20+
} from '@tanstack/react-start/server'
21+
22+
// Create/Update Routes
23+
24+
const rootRoute = createServerRoute()
25+
26+
// Populate the FileRoutesByPath interface
27+
28+
declare module '@tanstack/react-start/server' {
29+
interface FileRoutesByPath {}
30+
}
31+
32+
// Add type-safety to the createFileRoute function across the route tree
33+
34+
// Create and export the route tree
35+
36+
export interface FileRoutesByFullPath {}
37+
38+
export interface FileRoutesByTo {}
39+
40+
export interface FileRoutesById {
41+
__root__: typeof rootRoute
42+
}
43+
44+
export interface FileRouteTypes {
45+
fileRoutesByFullPath: FileRoutesByFullPath
46+
fullPaths: never
47+
fileRoutesByTo: FileRoutesByTo
48+
to: never
49+
id: '__root__'
50+
fileRoutesById: FileRoutesById
51+
}
52+
53+
export interface RootRouteChildren {}
54+
55+
const rootRouteChildren: RootRouteChildren = {}
56+
57+
export const routeTree = rootRoute
58+
._addFileChildren(rootRouteChildren)
59+
._addFileTypes<FileRouteTypes>()
60+
61+
/* ROUTE_MANIFEST_START
62+
{
63+
"routes": {
64+
"__root__": {
65+
"filePath": "__root.tsx",
66+
"children": []
67+
}
68+
}
69+
}
70+
ROUTE_MANIFEST_END */

app.config.ts

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

package.json

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"scripts": {
99
"dev": "npm-run-all --parallel dev:frontend dev:backend",
1010
"with-env": "dotenv -e ../../.env",
11-
"dev:frontend": "pnpm run with-env vinxi dev",
11+
"dev:frontend": "pnpm run with-env vite dev",
1212
"dev:backend": "convex dev --tail-logs",
13-
"build": "vinxi build",
14-
"start": "vinxi start",
13+
"build": "vite build",
14+
"start": "vite start",
1515
"lint": "prettier --check '**/*' --ignore-unknown && eslint --ext .ts,.tsx ./src",
1616
"format": "prettier --write '**/*' --ignore-unknown",
1717
"linkAll": "node scripts/link.js"
@@ -35,10 +35,10 @@
3535
"@tanstack/pacer": "^0.2.0",
3636
"@tanstack/react-pacer": "^0.2.0",
3737
"@tanstack/react-query": "^5.66.0",
38-
"@tanstack/react-router": "1.109.2",
39-
"@tanstack/react-router-with-query": "1.109.2",
40-
"@tanstack/router-devtools": "1.109.2",
41-
"@tanstack/start": "1.111.1",
38+
"@tanstack/react-router": "1.120.4-alpha.1",
39+
"@tanstack/react-router-with-query": "1.120.4-alpha.1",
40+
"@tanstack/react-start": "1.120.4-alpha.1",
41+
"@tanstack/react-router-devtools": "1.120.4-alpha.1",
4242
"@types/d3": "^7.4.3",
4343
"@typescript-eslint/parser": "^7.2.0",
4444
"@vercel/analytics": "^1.2.2",
@@ -94,16 +94,20 @@
9494
"postcss": "^8.4.35",
9595
"prettier": "^2.8.8",
9696
"tailwindcss": "^3.4.1",
97-
"typescript": "^5.6.3"
97+
"typescript": "^5.6.3",
98+
"vite": "^6.3.5"
99+
},
100+
"resolutions": {
101+
"vite": "6.3.5"
98102
},
99103
"engines": {
100104
"node": ">=18.0.0"
101105
},
102106
"_pnpm": {
103107
"overrides": {
104108
"@tanstack/react-router": "file:../router/packages/react-router",
105-
"@tanstack/router-devtools": "file:../router/packages/router-devtools",
106-
"@tanstack/start": "file:../router/packages/start",
109+
"@tanstack/react-router-devtools": "file:../router/packages/router-devtools",
110+
"@tanstack/react-start": "file:../router/packages/react-start",
107111
"@tanstack/history": "file:../router/packages/history",
108112
"@tanstack/react-store": "file:../router/packages/react-router/node_modules/@tanstack/react-store",
109113
"@tanstack/router-vite-plugin": "file:../router/packages/router-vite-plugin",

0 commit comments

Comments
 (0)