@react-router/dev 0.0.0-experimental-7a19e47ea → 0.0.0-experimental-8fdb14ec6
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 +30 -0
- package/bin.js +16 -1
- package/dist/build-7YIQVVYE.js +239 -0
- package/dist/chunk-6CEKSKVN.js +31 -0
- package/dist/chunk-6ZGYCLOA.js +57 -0
- package/dist/chunk-76RVI3VW.js +219 -0
- package/dist/chunk-ACXLX4EI.js +81 -0
- package/dist/chunk-NPNB22L5.js +49 -0
- package/dist/chunk-TLJPROZH.js +2626 -0
- package/dist/cli/index.js +84 -1385
- package/dist/config.js +1 -19
- package/dist/dev-BTYKYMMV.js +74 -0
- package/dist/routes.js +12 -179
- package/dist/vite/cloudflare.js +28 -125
- package/dist/vite.js +10 -2683
- package/package.json +17 -10
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-router/dev",
|
|
3
|
-
"version": "0.0.0-experimental-
|
|
3
|
+
"version": "0.0.0-experimental-8fdb14ec6",
|
|
4
4
|
"description": "Dev tools and CLI for React Router",
|
|
5
|
+
"type": "module",
|
|
5
6
|
"homepage": "https://reactrouter.com",
|
|
6
7
|
"bugs": {
|
|
7
8
|
"url": "https://github.com/remix-run/react-router/issues"
|
|
@@ -31,6 +32,12 @@
|
|
|
31
32
|
},
|
|
32
33
|
"./package.json": "./package.json"
|
|
33
34
|
},
|
|
35
|
+
"imports": {
|
|
36
|
+
"#module-sync-enabled": {
|
|
37
|
+
"module-sync": "./config/module-sync-enabled/true.js",
|
|
38
|
+
"default": "./config/module-sync-enabled/false.cjs"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
34
41
|
"bin": {
|
|
35
42
|
"react-router": "bin.js"
|
|
36
43
|
},
|
|
@@ -80,8 +87,8 @@
|
|
|
80
87
|
"semver": "^7.3.7",
|
|
81
88
|
"set-cookie-parser": "^2.6.0",
|
|
82
89
|
"valibot": "^0.41.0",
|
|
83
|
-
"vite-node": "
|
|
84
|
-
"@react-router/node": "0.0.0-experimental-
|
|
90
|
+
"vite-node": "3.0.0-beta.2",
|
|
91
|
+
"@react-router/node": "0.0.0-experimental-8fdb14ec6"
|
|
85
92
|
},
|
|
86
93
|
"devDependencies": {
|
|
87
94
|
"@types/babel__core": "^7.20.5",
|
|
@@ -93,7 +100,7 @@
|
|
|
93
100
|
"@types/gunzip-maybe": "^1.4.0",
|
|
94
101
|
"@types/jsesc": "^3.0.1",
|
|
95
102
|
"@types/lodash": "^4.14.182",
|
|
96
|
-
"@types/node": "^
|
|
103
|
+
"@types/node": "^20.0.0",
|
|
97
104
|
"@types/npmcli__package-json": "^4.0.0",
|
|
98
105
|
"@types/picomatch": "^2.3.0",
|
|
99
106
|
"@types/prettier": "^2.7.3",
|
|
@@ -107,18 +114,18 @@
|
|
|
107
114
|
"tiny-invariant": "^1.2.0",
|
|
108
115
|
"tsup": "^8.3.0",
|
|
109
116
|
"typescript": "^5.1.6",
|
|
110
|
-
"vite": "^
|
|
117
|
+
"vite": "^6.0.0",
|
|
111
118
|
"wireit": "0.14.9",
|
|
112
119
|
"wrangler": "^3.28.2",
|
|
113
|
-
"react-router": "
|
|
114
|
-
"
|
|
120
|
+
"@react-router/serve": "0.0.0-experimental-8fdb14ec6",
|
|
121
|
+
"react-router": "^0.0.0-experimental-8fdb14ec6"
|
|
115
122
|
},
|
|
116
123
|
"peerDependencies": {
|
|
117
124
|
"typescript": "^5.1.0",
|
|
118
|
-
"vite": "^5.1.0",
|
|
125
|
+
"vite": "^5.1.0 || ^6.0.0",
|
|
119
126
|
"wrangler": "^3.28.2",
|
|
120
|
-
"@react-router/serve": "^0.0.0-experimental-
|
|
121
|
-
"react-router": "^0.0.0-experimental-
|
|
127
|
+
"@react-router/serve": "^0.0.0-experimental-8fdb14ec6",
|
|
128
|
+
"react-router": "^0.0.0-experimental-8fdb14ec6"
|
|
122
129
|
},
|
|
123
130
|
"peerDependenciesMeta": {
|
|
124
131
|
"@react-router/serve": {
|