@tanstack/start-plugin-core 1.133.26 → 1.133.27
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/esm/schema.d.ts +8 -0
- package/package.json +6 -6
package/dist/esm/schema.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export declare function parseStartConfig(opts: z.input<typeof tanstackStartOptio
|
|
|
37
37
|
} | undefined;
|
|
38
38
|
experimental?: {
|
|
39
39
|
enableCodeSplitting?: boolean | undefined;
|
|
40
|
+
nonNestedRoutes?: boolean | undefined;
|
|
40
41
|
} | undefined;
|
|
41
42
|
plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
|
|
42
43
|
entry?: string | undefined;
|
|
@@ -848,10 +849,13 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
848
849
|
plugins: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodType<import('@tanstack/router-generator').GeneratorPlugin, z.ZodTypeDef, import('@tanstack/router-generator').GeneratorPlugin>, "many">>>;
|
|
849
850
|
experimental: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
850
851
|
enableCodeSplitting: z.ZodOptional<z.ZodBoolean>;
|
|
852
|
+
nonNestedRoutes: z.ZodOptional<z.ZodBoolean>;
|
|
851
853
|
}, "strip", z.ZodTypeAny, {
|
|
852
854
|
enableCodeSplitting?: boolean | undefined;
|
|
855
|
+
nonNestedRoutes?: boolean | undefined;
|
|
853
856
|
}, {
|
|
854
857
|
enableCodeSplitting?: boolean | undefined;
|
|
858
|
+
nonNestedRoutes?: boolean | undefined;
|
|
855
859
|
}>>>;
|
|
856
860
|
virtualRouteConfig: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodType<import('@tanstack/virtual-file-routes').VirtualRootRoute, z.ZodTypeDef, import('@tanstack/virtual-file-routes').VirtualRootRoute>, z.ZodString]>>>;
|
|
857
861
|
routeFilePrefix: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -905,6 +909,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
905
909
|
plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
|
|
906
910
|
experimental?: {
|
|
907
911
|
enableCodeSplitting?: boolean | undefined;
|
|
912
|
+
nonNestedRoutes?: boolean | undefined;
|
|
908
913
|
} | undefined;
|
|
909
914
|
virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
910
915
|
routeFilePrefix?: string | undefined;
|
|
@@ -940,6 +945,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
940
945
|
plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
|
|
941
946
|
experimental?: {
|
|
942
947
|
enableCodeSplitting?: boolean | undefined;
|
|
948
|
+
nonNestedRoutes?: boolean | undefined;
|
|
943
949
|
} | undefined;
|
|
944
950
|
virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
945
951
|
routeFilePrefix?: string | undefined;
|
|
@@ -3045,6 +3051,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3045
3051
|
plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
|
|
3046
3052
|
experimental?: {
|
|
3047
3053
|
enableCodeSplitting?: boolean | undefined;
|
|
3054
|
+
nonNestedRoutes?: boolean | undefined;
|
|
3048
3055
|
} | undefined;
|
|
3049
3056
|
virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
3050
3057
|
routeFilePrefix?: string | undefined;
|
|
@@ -3372,6 +3379,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3372
3379
|
plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
|
|
3373
3380
|
experimental?: {
|
|
3374
3381
|
enableCodeSplitting?: boolean | undefined;
|
|
3382
|
+
nonNestedRoutes?: boolean | undefined;
|
|
3375
3383
|
} | undefined;
|
|
3376
3384
|
virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
3377
3385
|
routeFilePrefix?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/start-plugin-core",
|
|
3
|
-
"version": "1.133.
|
|
3
|
+
"version": "1.133.27",
|
|
4
4
|
"description": "Modern and scalable routing for React applications",
|
|
5
5
|
"author": "Tanner Linsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -59,13 +59,13 @@
|
|
|
59
59
|
"vitefu": "^1.1.1",
|
|
60
60
|
"xmlbuilder2": "^3.1.1",
|
|
61
61
|
"zod": "^3.24.2",
|
|
62
|
-
"@tanstack/router-core": "1.133.
|
|
63
|
-
"@tanstack/router-generator": "1.133.
|
|
62
|
+
"@tanstack/router-core": "1.133.27",
|
|
63
|
+
"@tanstack/router-generator": "1.133.27",
|
|
64
|
+
"@tanstack/router-plugin": "1.133.27",
|
|
64
65
|
"@tanstack/router-utils": "1.133.19",
|
|
65
|
-
"@tanstack/router-plugin": "1.133.25",
|
|
66
66
|
"@tanstack/server-functions-plugin": "1.133.25",
|
|
67
|
-
"@tanstack/start-client-core": "1.133.
|
|
68
|
-
"@tanstack/start-server-core": "1.133.
|
|
67
|
+
"@tanstack/start-client-core": "1.133.27",
|
|
68
|
+
"@tanstack/start-server-core": "1.133.27"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@types/babel__code-frame": "^7.0.6",
|