@tanstack/solid-start 1.132.2 → 1.132.4
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/dist/default-entry/esm/server.js +1 -0
- package/dist/default-entry/esm/server.js.map +1 -1
- package/dist/default-entry/esm/start.d.ts +1 -2
- package/dist/plugin/default-entry/server.ts +1 -1
- package/dist/plugin/default-entry/start.ts +1 -1
- package/package.json +5 -5
- package/src/default-entry/server.ts +1 -1
- package/src/default-entry/start.ts +1 -1
|
@@ -2,6 +2,7 @@ import { createStartHandler, defaultStreamHandler } from "@tanstack/solid-start/
|
|
|
2
2
|
const fetch = createStartHandler(defaultStreamHandler);
|
|
3
3
|
const server = {
|
|
4
4
|
// Providing `RequestHandler` from `@tanstack/solid-start/server` is required so that the output types don't import it from `@tanstack/start-server-core`
|
|
5
|
+
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
|
|
5
6
|
fetch
|
|
6
7
|
};
|
|
7
8
|
export {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.js","sources":["../../../src/default-entry/server.ts"],"sourcesContent":["import {\n createStartHandler,\n defaultStreamHandler,\n} from '@tanstack/solid-start/server'\nimport type { Register } from '@tanstack/solid-router'\nimport type { RequestHandler } from '@tanstack/solid-start/server'\n\nconst fetch = createStartHandler(defaultStreamHandler)\n\nexport default {\n // Providing `RequestHandler` from `@tanstack/solid-start/server` is required so that the output types don't import it from `@tanstack/start-server-core`\n\n fetch: fetch as RequestHandler<Register>,\n}\n"],"names":[],"mappings":";AAOA,MAAM,QAAQ,mBAAmB,oBAAoB;AAErD,MAAA,SAAe;AAAA;AAAA,EAGb;AACF;"}
|
|
1
|
+
{"version":3,"file":"server.js","sources":["../../../src/default-entry/server.ts"],"sourcesContent":["import {\n createStartHandler,\n defaultStreamHandler,\n} from '@tanstack/solid-start/server'\nimport type { Register } from '@tanstack/solid-router'\nimport type { RequestHandler } from '@tanstack/solid-start/server'\n\nconst fetch = createStartHandler(defaultStreamHandler)\n\nexport default {\n // Providing `RequestHandler` from `@tanstack/solid-start/server` is required so that the output types don't import it from `@tanstack/start-server-core`\n // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion\n fetch: fetch as RequestHandler<Register>,\n}\n"],"names":[],"mappings":";AAOA,MAAM,QAAQ,mBAAmB,oBAAoB;AAErD,MAAA,SAAe;AAAA;AAAA;AAAA,EAGb;AACF;"}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
declare const
|
|
2
|
-
export default _default;
|
|
1
|
+
export declare const startInstance: undefined;
|
|
@@ -9,6 +9,6 @@ const fetch = createStartHandler(defaultStreamHandler)
|
|
|
9
9
|
|
|
10
10
|
export default {
|
|
11
11
|
// Providing `RequestHandler` from `@tanstack/solid-start/server` is required so that the output types don't import it from `@tanstack/start-server-core`
|
|
12
|
-
|
|
12
|
+
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
|
|
13
13
|
fetch: fetch as RequestHandler<Register>,
|
|
14
14
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export const startInstance = undefined
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/solid-start",
|
|
3
|
-
"version": "1.132.
|
|
3
|
+
"version": "1.132.4",
|
|
4
4
|
"description": "Modern and scalable routing for Solid applications",
|
|
5
5
|
"author": "Tanner Linsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -68,11 +68,11 @@
|
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"pathe": "^2.0.3",
|
|
71
|
-
"@tanstack/solid-start-client": "1.132.
|
|
72
|
-
"@tanstack/
|
|
73
|
-
"@tanstack/start-
|
|
71
|
+
"@tanstack/solid-start-client": "1.132.4",
|
|
72
|
+
"@tanstack/start-plugin-core": "1.132.4",
|
|
73
|
+
"@tanstack/solid-start-server": "1.132.4",
|
|
74
74
|
"@tanstack/solid-router": "1.132.2",
|
|
75
|
-
"@tanstack/start-client-core": "1.132.
|
|
75
|
+
"@tanstack/start-client-core": "1.132.4"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"vite": "^7.1.1",
|
|
@@ -9,6 +9,6 @@ const fetch = createStartHandler(defaultStreamHandler)
|
|
|
9
9
|
|
|
10
10
|
export default {
|
|
11
11
|
// Providing `RequestHandler` from `@tanstack/solid-start/server` is required so that the output types don't import it from `@tanstack/start-server-core`
|
|
12
|
-
|
|
12
|
+
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
|
|
13
13
|
fetch: fetch as RequestHandler<Register>,
|
|
14
14
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export const startInstance = undefined
|