@tanstack/solid-start 2.0.0-beta.16 → 2.0.0-beta.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/solid-start",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.18",
|
|
4
4
|
"description": "Modern and scalable routing for Solid applications",
|
|
5
5
|
"author": "Tanner Linsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -101,24 +101,24 @@
|
|
|
101
101
|
},
|
|
102
102
|
"dependencies": {
|
|
103
103
|
"pathe": "^2.0.3",
|
|
104
|
-
"@tanstack/solid-
|
|
105
|
-
"@tanstack/solid-start-
|
|
106
|
-
"@tanstack/start-
|
|
107
|
-
"@tanstack/solid-router": "2.0.0-beta.15",
|
|
104
|
+
"@tanstack/solid-router": "2.0.0-beta.17",
|
|
105
|
+
"@tanstack/solid-start-client": "2.0.0-beta.17",
|
|
106
|
+
"@tanstack/solid-start-server": "2.0.0-beta.17",
|
|
108
107
|
"@tanstack/start-client-core": "1.167.9",
|
|
108
|
+
"@tanstack/start-plugin-core": "1.167.17",
|
|
109
109
|
"@tanstack/start-server-core": "1.167.9"
|
|
110
110
|
},
|
|
111
111
|
"devDependencies": {
|
|
112
|
-
"@solidjs/web": "2.0.0-beta.
|
|
112
|
+
"@solidjs/web": "2.0.0-beta.10",
|
|
113
113
|
"@tanstack/intent": "^0.0.14",
|
|
114
|
-
"solid-js": "2.0.0-beta.8",
|
|
115
|
-
"vite": "*",
|
|
116
114
|
"@types/node": ">=20",
|
|
115
|
+
"solid-js": "2.0.0-beta.10",
|
|
116
|
+
"vite": "*",
|
|
117
117
|
"@tanstack/router-utils": "1.161.6"
|
|
118
118
|
},
|
|
119
119
|
"peerDependencies": {
|
|
120
|
-
"solid-js": ">=2.0.0-0 <3.0.0",
|
|
121
120
|
"@solidjs/web": ">=2.0.0-0 <3.0.0",
|
|
121
|
+
"solid-js": ">=2.0.0-0 <3.0.0",
|
|
122
122
|
"vite": ">=7.0.0"
|
|
123
123
|
},
|
|
124
124
|
"bin": {
|
|
@@ -66,7 +66,7 @@ npm i -D vite vite-plugin-solid typescript
|
|
|
66
66
|
{
|
|
67
67
|
"compilerOptions": {
|
|
68
68
|
"jsx": "preserve",
|
|
69
|
-
"jsxImportSource": "
|
|
69
|
+
"jsxImportSource": "@solidjs/web",
|
|
70
70
|
"moduleResolution": "Bundler",
|
|
71
71
|
"module": "ESNext",
|
|
72
72
|
"target": "ES2022",
|
|
@@ -115,7 +115,6 @@ import {
|
|
|
115
115
|
HeadContent,
|
|
116
116
|
Scripts,
|
|
117
117
|
} from '@tanstack/solid-router'
|
|
118
|
-
import { HydrationScript } from 'solid-js/web'
|
|
119
118
|
import { Suspense } from 'solid-js'
|
|
120
119
|
|
|
121
120
|
export const Route = createRootRoute({
|
|
@@ -134,10 +133,9 @@ function RootDocument(props: { children: any }) {
|
|
|
134
133
|
return (
|
|
135
134
|
<html>
|
|
136
135
|
<head>
|
|
137
|
-
<
|
|
136
|
+
<HeadContent />
|
|
138
137
|
</head>
|
|
139
138
|
<body>
|
|
140
|
-
<HeadContent />
|
|
141
139
|
<Suspense>{props.children}</Suspense>
|
|
142
140
|
<Scripts />
|
|
143
141
|
</body>
|