@tanstack/router-plugin 1.97.21 → 1.97.22
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/cjs/rspack.d.cts +3 -3
- package/dist/esm/rspack.d.ts +3 -3
- package/package.json +2 -2
package/dist/cjs/rspack.d.cts
CHANGED
|
@@ -40,7 +40,7 @@ declare const TanStackRouterGeneratorRspack: (options?: Partial<{
|
|
|
40
40
|
experimental?: {
|
|
41
41
|
enableCodeSplitting?: boolean | undefined;
|
|
42
42
|
} | undefined;
|
|
43
|
-
}> | undefined) =>
|
|
43
|
+
}> | undefined) => import('unplugin').RspackPluginInstance;
|
|
44
44
|
/**
|
|
45
45
|
* @example
|
|
46
46
|
* ```ts
|
|
@@ -82,7 +82,7 @@ declare const TanStackRouterCodeSplitterRspack: (options?: Partial<{
|
|
|
82
82
|
experimental?: {
|
|
83
83
|
enableCodeSplitting?: boolean | undefined;
|
|
84
84
|
} | undefined;
|
|
85
|
-
}> | undefined) =>
|
|
85
|
+
}> | undefined) => import('unplugin').RspackPluginInstance;
|
|
86
86
|
/**
|
|
87
87
|
* @example
|
|
88
88
|
* ```ts
|
|
@@ -124,7 +124,7 @@ declare const TanStackRouterRspack: (options?: Partial<{
|
|
|
124
124
|
experimental?: {
|
|
125
125
|
enableCodeSplitting?: boolean | undefined;
|
|
126
126
|
} | undefined;
|
|
127
|
-
}> | undefined) =>
|
|
127
|
+
}> | undefined) => import('unplugin').RspackPluginInstance;
|
|
128
128
|
export default TanStackRouterRspack;
|
|
129
129
|
export { configSchema, TanStackRouterRspack, TanStackRouterGeneratorRspack, TanStackRouterCodeSplitterRspack, };
|
|
130
130
|
export type { Config };
|
package/dist/esm/rspack.d.ts
CHANGED
|
@@ -40,7 +40,7 @@ declare const TanStackRouterGeneratorRspack: (options?: Partial<{
|
|
|
40
40
|
experimental?: {
|
|
41
41
|
enableCodeSplitting?: boolean | undefined;
|
|
42
42
|
} | undefined;
|
|
43
|
-
}> | undefined) =>
|
|
43
|
+
}> | undefined) => import('unplugin').RspackPluginInstance;
|
|
44
44
|
/**
|
|
45
45
|
* @example
|
|
46
46
|
* ```ts
|
|
@@ -82,7 +82,7 @@ declare const TanStackRouterCodeSplitterRspack: (options?: Partial<{
|
|
|
82
82
|
experimental?: {
|
|
83
83
|
enableCodeSplitting?: boolean | undefined;
|
|
84
84
|
} | undefined;
|
|
85
|
-
}> | undefined) =>
|
|
85
|
+
}> | undefined) => import('unplugin').RspackPluginInstance;
|
|
86
86
|
/**
|
|
87
87
|
* @example
|
|
88
88
|
* ```ts
|
|
@@ -124,7 +124,7 @@ declare const TanStackRouterRspack: (options?: Partial<{
|
|
|
124
124
|
experimental?: {
|
|
125
125
|
enableCodeSplitting?: boolean | undefined;
|
|
126
126
|
} | undefined;
|
|
127
|
-
}> | undefined) =>
|
|
127
|
+
}> | undefined) => import('unplugin').RspackPluginInstance;
|
|
128
128
|
export default TanStackRouterRspack;
|
|
129
129
|
export { configSchema, TanStackRouterRspack, TanStackRouterGeneratorRspack, TanStackRouterCodeSplitterRspack, };
|
|
130
130
|
export type { Config };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/router-plugin",
|
|
3
|
-
"version": "1.97.
|
|
3
|
+
"version": "1.97.22",
|
|
4
4
|
"description": "Modern and scalable routing for React applications",
|
|
5
5
|
"author": "Tanner Linsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"chalk": "^5.4.1",
|
|
104
104
|
"chokidar": "^3.6.0",
|
|
105
105
|
"diff": "^7.0.0",
|
|
106
|
-
"unplugin": "^1.
|
|
106
|
+
"unplugin": "^2.1.2",
|
|
107
107
|
"zod": "^3.24.1",
|
|
108
108
|
"@tanstack/router-generator": "^1.97.21",
|
|
109
109
|
"@tanstack/virtual-file-routes": "^1.97.8"
|