@firtoz/router-toolkit 3.0.0 → 3.0.2
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/README.md +2 -2
- package/package.json +5 -6
package/README.md
CHANGED
|
@@ -1335,7 +1335,7 @@ useEffect(() => {
|
|
|
1335
1335
|
|
|
1336
1336
|
- Check the [React Router 7 documentation](https://reactrouter.com) for framework mode setup
|
|
1337
1337
|
- Look at the test application in the `tests/` directory for working examples
|
|
1338
|
-
- Open an issue on [GitHub](https://github.com/firtoz/
|
|
1338
|
+
- Open an issue on [GitHub](https://github.com/firtoz/fullstack-toolkit) if you find a bug
|
|
1339
1339
|
|
|
1340
1340
|
## Contributing
|
|
1341
1341
|
|
|
@@ -1347,6 +1347,6 @@ MIT © [Firtina Ozbalikchi](https://github.com/firtoz)
|
|
|
1347
1347
|
|
|
1348
1348
|
## Links
|
|
1349
1349
|
|
|
1350
|
-
- [GitHub Repository](https://github.com/firtoz/
|
|
1350
|
+
- [GitHub Repository](https://github.com/firtoz/fullstack-toolkit)
|
|
1351
1351
|
- [NPM Package](https://npmjs.com/package/@firtoz/router-toolkit)
|
|
1352
1352
|
- [React Router Documentation](https://reactrouter.com)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firtoz/router-toolkit",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"description": "Type-safe React Router 7 framework mode helpers with enhanced fetching, form submission, and state management",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"module": "./src/index.ts",
|
|
@@ -26,7 +26,6 @@
|
|
|
26
26
|
"README.md"
|
|
27
27
|
],
|
|
28
28
|
"scripts": {
|
|
29
|
-
"build": "echo 'No build step - using TypeScript source directly'",
|
|
30
29
|
"typecheck": "tsc --noEmit",
|
|
31
30
|
"lint": "biome lint src --write",
|
|
32
31
|
"format": "biome format src --write",
|
|
@@ -45,17 +44,17 @@
|
|
|
45
44
|
],
|
|
46
45
|
"author": "Firtina Ozbalikchi <firtoz@github.com>",
|
|
47
46
|
"license": "MIT",
|
|
48
|
-
"homepage": "https://github.com/firtoz/
|
|
47
|
+
"homepage": "https://github.com/firtoz/fullstack-toolkit#readme",
|
|
49
48
|
"repository": {
|
|
50
49
|
"type": "git",
|
|
51
|
-
"url": "https://github.com/firtoz/
|
|
50
|
+
"url": "https://github.com/firtoz/fullstack-toolkit.git",
|
|
52
51
|
"directory": "packages/router-toolkit"
|
|
53
52
|
},
|
|
54
53
|
"bugs": {
|
|
55
|
-
"url": "https://github.com/firtoz/
|
|
54
|
+
"url": "https://github.com/firtoz/fullstack-toolkit/issues"
|
|
56
55
|
},
|
|
57
56
|
"peerDependencies": {
|
|
58
|
-
"@firtoz/maybe-error": "^1.3.
|
|
57
|
+
"@firtoz/maybe-error": "^1.3.2",
|
|
59
58
|
"react": "^19.2.0",
|
|
60
59
|
"react-router": "^7.9.3",
|
|
61
60
|
"zod": "^4.1.11"
|