@tanstack/start-client-core 1.132.3 → 1.132.6
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.
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
const
|
|
2
|
-
startInstance: () => {
|
|
3
|
-
}
|
|
4
|
-
};
|
|
1
|
+
const startInstance = void 0;
|
|
5
2
|
const getRouter = () => {
|
|
6
3
|
};
|
|
7
4
|
export {
|
|
8
|
-
|
|
9
|
-
|
|
5
|
+
getRouter,
|
|
6
|
+
startInstance
|
|
10
7
|
};
|
|
11
8
|
//# sourceMappingURL=fake-start-entry.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fake-start-entry.js","sources":["../../src/fake-start-entry.ts"],"sourcesContent":["export
|
|
1
|
+
{"version":3,"file":"fake-start-entry.js","sources":["../../src/fake-start-entry.ts"],"sourcesContent":["export const startInstance = undefined\nexport const getRouter = () => {}\n"],"names":[],"mappings":"AAAO,MAAM,gBAAgB;AACtB,MAAM,YAAY,MAAM;AAAC;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/start-client-core",
|
|
3
|
-
"version": "1.132.
|
|
3
|
+
"version": "1.132.6",
|
|
4
4
|
"description": "Modern and scalable routing for React applications",
|
|
5
5
|
"author": "Tanner Linsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"seroval": "^1.3.2",
|
|
61
61
|
"tiny-invariant": "^1.3.3",
|
|
62
62
|
"tiny-warning": "^1.0.3",
|
|
63
|
-
"@tanstack/router-core": "1.132.
|
|
64
|
-
"@tanstack/start-storage-context": "1.132.
|
|
63
|
+
"@tanstack/router-core": "1.132.6",
|
|
64
|
+
"@tanstack/start-storage-context": "1.132.6"
|
|
65
65
|
},
|
|
66
66
|
"scripts": {}
|
|
67
67
|
}
|
package/src/fake-start-entry.ts
CHANGED