@tanstack/router-generator
Advanced tools
Comparing version 1.48.3 to 1.49.3
@@ -17,2 +17,3 @@ import { z } from 'zod'; | ||
routeTreeFileFooter: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>; | ||
autoCodeSplitting: z.ZodOptional<z.ZodBoolean>; | ||
experimental: z.ZodOptional<z.ZodObject<{ | ||
@@ -39,2 +40,3 @@ enableCodeSplitting: z.ZodOptional<z.ZodBoolean>; | ||
routeFileIgnorePattern?: string | undefined; | ||
autoCodeSplitting?: boolean | undefined; | ||
experimental?: { | ||
@@ -57,2 +59,3 @@ enableCodeSplitting?: boolean | undefined; | ||
routeTreeFileFooter?: string[] | undefined; | ||
autoCodeSplitting?: boolean | undefined; | ||
experimental?: { | ||
@@ -59,0 +62,0 @@ enableCodeSplitting?: boolean | undefined; |
@@ -23,3 +23,5 @@ import path from "node:path"; | ||
routeTreeFileFooter: z.array(z.string()).optional().default(["/* prettier-ignore-end */"]), | ||
autoCodeSplitting: z.boolean().optional(), | ||
experimental: z.object({ | ||
// TODO: Remove this option in the next major release (v2). | ||
enableCodeSplitting: z.boolean().optional() | ||
@@ -26,0 +28,0 @@ }).optional() |
{ | ||
"name": "@tanstack/router-generator", | ||
"version": "1.48.3", | ||
"version": "1.49.3", | ||
"description": "Modern and scalable routing for React applications", | ||
@@ -5,0 +5,0 @@ "author": "Tanner Linsley", |
@@ -30,4 +30,6 @@ import path from 'node:path' | ||
.default(['/* prettier-ignore-end */']), | ||
autoCodeSplitting: z.boolean().optional(), | ||
experimental: z | ||
.object({ | ||
// TODO: Remove this option in the next major release (v2). | ||
enableCodeSplitting: z.boolean().optional(), | ||
@@ -34,0 +36,0 @@ }) |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
201049
2582