@react-router/remix-routes-option-adapter 7.6.2 → 7.6.3-pre.0
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/CHANGELOG.md +8 -0
- package/dist/index.js +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# `@react-router/remix-config-routes-adapter`
|
|
2
2
|
|
|
3
|
+
## 7.6.3-pre.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Use `replaceAll` for normalising windows file system slashes. ([#13738](https://github.com/remix-run/react-router/pull/13738))
|
|
8
|
+
- Updated dependencies:
|
|
9
|
+
- `@react-router/dev@7.6.3-pre.0`
|
|
10
|
+
|
|
3
11
|
## 7.6.2
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @react-router/remix-routes-option-adapter v7.6.
|
|
2
|
+
* @react-router/remix-routes-option-adapter v7.6.3-pre.0
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Remix Software Inc.
|
|
5
5
|
*
|
|
@@ -77,7 +77,7 @@ function routeManifestToRouteConfig(routeManifest, rootId = "root") {
|
|
|
77
77
|
// normalizeSlashes.ts
|
|
78
78
|
var import_node_path = __toESM(require("path"));
|
|
79
79
|
function normalizeSlashes(file) {
|
|
80
|
-
return file.
|
|
80
|
+
return file.replaceAll(import_node_path.default.win32.sep, "/");
|
|
81
81
|
}
|
|
82
82
|
|
|
83
83
|
// defineRoutes.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-router/remix-routes-option-adapter",
|
|
3
|
-
"version": "7.6.
|
|
3
|
+
"version": "7.6.3-pre.0",
|
|
4
4
|
"description": "Adapter for Remix's \"routes\" config option, for use within routes.ts",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/remix-run/react-router/issues"
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"tsup": "^8.3.0",
|
|
38
38
|
"typescript": "^5.1.6",
|
|
39
39
|
"wireit": "0.14.9",
|
|
40
|
-
"@react-router/dev": "7.6.
|
|
40
|
+
"@react-router/dev": "7.6.3-pre.0"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"typescript": "^5.1.0",
|
|
44
|
-
"@react-router/dev": "^7.6.
|
|
44
|
+
"@react-router/dev": "^7.6.3-pre.0"
|
|
45
45
|
},
|
|
46
46
|
"peerDependenciesMeta": {
|
|
47
47
|
"typescript": {
|