Skip to content

Commit ed70bb6

Browse files
authored
Update site to devinxi alpha (#402)
1 parent ff22098 commit ed70bb6

Some content is hidden

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

55 files changed

+3105
-2672
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ yarn.lock
88
.vercel
99
.output
1010
.vinxi
11-
.netlify
11+
.tanstack-start/build
12+
.nitro/*
13+
.netlify/*
1214

1315
/build/
1416
/api/
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: 11 additions & 11 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.13",
39+
"@tanstack/react-router-with-query": "1.120.4-alpha.13",
40+
"@tanstack/react-start": "1.120.4-alpha.13",
41+
"@tanstack/react-router-devtools": "1.120.4-alpha.13",
4242
"@types/d3": "^7.4.3",
4343
"@typescript-eslint/parser": "^7.2.0",
4444
"@vercel/analytics": "^1.2.2",
@@ -74,7 +74,6 @@
7474
"shiki": "^1.4.0",
7575
"tailwind-merge": "^1.14.0",
7676
"tiny-invariant": "^1.3.3",
77-
"vinxi": "^0.5.3",
7877
"vite-tsconfig-paths": "^5.0.1",
7978
"zod": "^3.23.8",
8079
"zustand": "^4.5.2"
@@ -94,16 +93,17 @@
9493
"postcss": "^8.4.35",
9594
"prettier": "^2.8.8",
9695
"tailwindcss": "^3.4.1",
97-
"typescript": "^5.6.3"
96+
"typescript": "^5.6.3",
97+
"vite": "^6.3.5"
9898
},
9999
"engines": {
100100
"node": ">=18.0.0"
101101
},
102102
"_pnpm": {
103103
"overrides": {
104104
"@tanstack/react-router": "file:../router/packages/react-router",
105-
"@tanstack/router-devtools": "file:../router/packages/router-devtools",
106-
"@tanstack/start": "file:../router/packages/start",
105+
"@tanstack/react-router-devtools": "file:../router/packages/router-devtools",
106+
"@tanstack/react-start": "file:../router/packages/react-start",
107107
"@tanstack/history": "file:../router/packages/history",
108108
"@tanstack/react-store": "file:../router/packages/react-router/node_modules/@tanstack/react-store",
109109
"@tanstack/router-vite-plugin": "file:../router/packages/router-vite-plugin",

0 commit comments

Comments
 (0)