@tanstack/start-plugin-core 1.132.26 → 1.132.28
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/constants.d.ts
CHANGED
|
@@ -4,8 +4,8 @@ export declare const VITE_ENVIRONMENT_NAMES: {
|
|
|
4
4
|
};
|
|
5
5
|
export type ViteEnvironmentNames = (typeof VITE_ENVIRONMENT_NAMES)[keyof typeof VITE_ENVIRONMENT_NAMES];
|
|
6
6
|
export declare const ENTRY_POINTS: {
|
|
7
|
-
readonly client: "
|
|
8
|
-
readonly server: "
|
|
7
|
+
readonly client: "virtual:tanstack-start-client-entry";
|
|
8
|
+
readonly server: "virtual:tanstack-start-server-entry";
|
|
9
9
|
readonly start: "#tanstack-start-entry";
|
|
10
10
|
readonly router: "#tanstack-router-entry";
|
|
11
11
|
};
|
package/dist/esm/constants.js
CHANGED
|
@@ -5,8 +5,8 @@ const VITE_ENVIRONMENT_NAMES = {
|
|
|
5
5
|
client: "client"
|
|
6
6
|
};
|
|
7
7
|
const ENTRY_POINTS = {
|
|
8
|
-
client: "
|
|
9
|
-
server: "
|
|
8
|
+
client: "virtual:tanstack-start-client-entry",
|
|
9
|
+
server: "virtual:tanstack-start-server-entry",
|
|
10
10
|
// the start entry point must always be provided by the user
|
|
11
11
|
start: "#tanstack-start-entry",
|
|
12
12
|
router: "#tanstack-router-entry"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","sources":["../../src/constants.ts"],"sourcesContent":["export const VITE_ENVIRONMENT_NAMES = {\n // 'ssr' is chosen as the name for the server environment to ensure backwards compatibility\n // with vite plugins that are not compatible with the new vite environment API (e.g. tailwindcss)\n server: 'ssr',\n client: 'client',\n} as const\n\nexport type ViteEnvironmentNames =\n (typeof VITE_ENVIRONMENT_NAMES)[keyof typeof VITE_ENVIRONMENT_NAMES]\n\n// for client and router:\n// if a user has a custom server/client entry point file, resolve.alias will point to this\n// otherwise it will be aliased to the default entry point in the respective framework plugin\nexport const ENTRY_POINTS = {\n client: '
|
|
1
|
+
{"version":3,"file":"constants.js","sources":["../../src/constants.ts"],"sourcesContent":["export const VITE_ENVIRONMENT_NAMES = {\n // 'ssr' is chosen as the name for the server environment to ensure backwards compatibility\n // with vite plugins that are not compatible with the new vite environment API (e.g. tailwindcss)\n server: 'ssr',\n client: 'client',\n} as const\n\nexport type ViteEnvironmentNames =\n (typeof VITE_ENVIRONMENT_NAMES)[keyof typeof VITE_ENVIRONMENT_NAMES]\n\n// for client and router:\n// if a user has a custom server/client entry point file, resolve.alias will point to this\n// otherwise it will be aliased to the default entry point in the respective framework plugin\nexport const ENTRY_POINTS = {\n client: 'virtual:tanstack-start-client-entry',\n server: 'virtual:tanstack-start-server-entry',\n // the start entry point must always be provided by the user\n start: '#tanstack-start-entry',\n router: '#tanstack-router-entry',\n} as const\n"],"names":[],"mappings":"AAAO,MAAM,yBAAyB;AAAA;AAAA;AAAA,EAGpC,QAAQ;AAAA,EACR,QAAQ;AACV;AAQO,MAAM,eAAe;AAAA,EAC1B,QAAQ;AAAA,EACR,QAAQ;AAAA;AAAA,EAER,OAAO;AAAA,EACP,QAAQ;AACV;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/start-plugin-core",
|
|
3
|
-
"version": "1.132.
|
|
3
|
+
"version": "1.132.28",
|
|
4
4
|
"description": "Modern and scalable routing for React applications",
|
|
5
5
|
"author": "Tanner Linsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -59,12 +59,12 @@
|
|
|
59
59
|
"vitefu": "^1.1.1",
|
|
60
60
|
"xmlbuilder2": "^3.1.1",
|
|
61
61
|
"zod": "^3.24.2",
|
|
62
|
-
"@tanstack/router-
|
|
63
|
-
"@tanstack/router-
|
|
64
|
-
"@tanstack/router-plugin": "1.132.
|
|
62
|
+
"@tanstack/router-generator": "1.132.27",
|
|
63
|
+
"@tanstack/router-core": "1.132.27",
|
|
64
|
+
"@tanstack/router-plugin": "1.132.27",
|
|
65
65
|
"@tanstack/router-utils": "1.132.21",
|
|
66
66
|
"@tanstack/server-functions-plugin": "1.132.21",
|
|
67
|
-
"@tanstack/start-server-core": "1.132.
|
|
67
|
+
"@tanstack/start-server-core": "1.132.27"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
70
|
"@types/babel__code-frame": "^7.0.6",
|
package/src/constants.ts
CHANGED
|
@@ -12,8 +12,8 @@ export type ViteEnvironmentNames =
|
|
|
12
12
|
// if a user has a custom server/client entry point file, resolve.alias will point to this
|
|
13
13
|
// otherwise it will be aliased to the default entry point in the respective framework plugin
|
|
14
14
|
export const ENTRY_POINTS = {
|
|
15
|
-
client: '
|
|
16
|
-
server: '
|
|
15
|
+
client: 'virtual:tanstack-start-client-entry',
|
|
16
|
+
server: 'virtual:tanstack-start-server-entry',
|
|
17
17
|
// the start entry point must always be provided by the user
|
|
18
18
|
start: '#tanstack-start-entry',
|
|
19
19
|
router: '#tanstack-router-entry',
|