@tanstack/react-router 1.132.45 → 1.133.3
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/llms/rules/guide.d.ts +1 -1
- package/dist/llms/rules/guide.js +9 -4
- package/dist/llms/rules/routing.d.ts +1 -1
- package/dist/llms/rules/routing.js +5 -444
- package/dist/llms/rules/setup-and-architecture.d.ts +1 -1
- package/dist/llms/rules/setup-and-architecture.js +835 -218
- package/package.json +22 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/react-router",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.133.3",
|
|
4
4
|
"description": "Modern and scalable routing for React applications",
|
|
5
5
|
"author": "Tanner Linsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -79,8 +79,8 @@
|
|
|
79
79
|
"isbot": "^5.1.22",
|
|
80
80
|
"tiny-invariant": "^1.3.3",
|
|
81
81
|
"tiny-warning": "^1.0.3",
|
|
82
|
-
"@tanstack/
|
|
83
|
-
"@tanstack/
|
|
82
|
+
"@tanstack/history": "1.133.3",
|
|
83
|
+
"@tanstack/router-core": "1.133.3"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
86
|
"@testing-library/jest-dom": "^6.6.3",
|
|
@@ -96,5 +96,23 @@
|
|
|
96
96
|
"react": ">=18.0.0 || >=19.0.0",
|
|
97
97
|
"react-dom": ">=18.0.0 || >=19.0.0"
|
|
98
98
|
},
|
|
99
|
-
"scripts": {
|
|
99
|
+
"scripts": {
|
|
100
|
+
"clean": "rimraf ./dist && rimraf ./coverage",
|
|
101
|
+
"test:eslint": "eslint",
|
|
102
|
+
"test:types": "pnpm run \"/^test:types:ts[0-9]{2}$/\"",
|
|
103
|
+
"test:types:ts54": "node ../../node_modules/typescript54/lib/tsc.js -p tsconfig.legacy.json",
|
|
104
|
+
"test:types:ts55": "node ../../node_modules/typescript55/lib/tsc.js -p tsconfig.legacy.json",
|
|
105
|
+
"test:types:ts56": "node ../../node_modules/typescript56/lib/tsc.js -p tsconfig.legacy.json",
|
|
106
|
+
"test:types:ts57": "node ../../node_modules/typescript57/lib/tsc.js -p tsconfig.legacy.json",
|
|
107
|
+
"test:types:ts58": "node ../../node_modules/typescript58/lib/tsc.js -p tsconfig.legacy.json",
|
|
108
|
+
"test:types:ts59": "tsc -p tsconfig.legacy.json",
|
|
109
|
+
"test:unit": "vitest",
|
|
110
|
+
"test:unit:dev": "pnpm run test:unit --watch --hideSkippedTests",
|
|
111
|
+
"test:perf": "vitest bench",
|
|
112
|
+
"test:perf:dev": "pnpm run test:perf --watch --hideSkippedTests",
|
|
113
|
+
"test:build": "publint --strict && attw --ignore-rules no-resolution --pack .",
|
|
114
|
+
"build": "pnpm run build:lib && pnpm run build:llm",
|
|
115
|
+
"build:lib": "vite build",
|
|
116
|
+
"build:llm": "node ../../scripts/llms-generate.mjs react-router && tsc -p ./llms/tsconfig.json"
|
|
117
|
+
}
|
|
100
118
|
}
|