@react-native/dev-middleware 0.84.0-nightly-20251202-b0e754bc7 → 0.84.0-nightly-20251204-5bb3a6d68
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
CHANGED
|
@@ -94,7 +94,7 @@ React Native frameworks may pass an `unstable_experiments` option to `createDevM
|
|
|
94
94
|
|
|
95
95
|
### `unstable_experiments.enableStandaloneFuseboxShell`
|
|
96
96
|
|
|
97
|
-
|
|
97
|
+
Enables launching the debugger frontend in a standalone app shell (provided by the `@react-native/debugger-shell` package) rather than in a browser window. Since React Native 0.83 this defaults to `true`, and may be disabled by explicitly passing `false`.
|
|
98
98
|
|
|
99
99
|
The shell is powered by a separate binary that is downloaded and cached in the background (immediately after the call to `createDevMiddleware`). If there is a problem downloading or invoking this binary for the first time, the debugger frontend will revert to launching in a browser window until the next time `createDevMiddleware` is called (typically, on the next dev server start).
|
|
100
100
|
|
|
@@ -80,7 +80,7 @@ function getExperiments(config) {
|
|
|
80
80
|
return {
|
|
81
81
|
enableOpenDebuggerRedirect: config.enableOpenDebuggerRedirect ?? false,
|
|
82
82
|
enableNetworkInspector: config.enableNetworkInspector ?? false,
|
|
83
|
-
enableStandaloneFuseboxShell: config.enableStandaloneFuseboxShell ??
|
|
83
|
+
enableStandaloneFuseboxShell: config.enableStandaloneFuseboxShell ?? true,
|
|
84
84
|
};
|
|
85
85
|
}
|
|
86
86
|
function createWrappedEventReporter(reporter, logger, experiments) {
|
|
@@ -20,7 +20,7 @@ export type Experiments = $ReadOnly<{
|
|
|
20
20
|
/**
|
|
21
21
|
* Enables the Network panel in the debugger frontend.
|
|
22
22
|
*/
|
|
23
|
-
// NOTE: Used by Expo, exposing a tab labelled "Network (Expo
|
|
23
|
+
// NOTE: Used by Expo, exposing a tab labelled "Network (Expo)"
|
|
24
24
|
enableNetworkInspector: boolean,
|
|
25
25
|
|
|
26
26
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native/dev-middleware",
|
|
3
|
-
"version": "0.84.0-nightly-
|
|
3
|
+
"version": "0.84.0-nightly-20251204-5bb3a6d68",
|
|
4
4
|
"description": "Dev server middleware for React Native",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react-native",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@isaacs/ttlcache": "^1.4.1",
|
|
26
|
-
"@react-native/debugger-frontend": "0.84.0-nightly-
|
|
27
|
-
"@react-native/debugger-shell": "0.84.0-nightly-
|
|
26
|
+
"@react-native/debugger-frontend": "0.84.0-nightly-20251204-5bb3a6d68",
|
|
27
|
+
"@react-native/debugger-shell": "0.84.0-nightly-20251204-5bb3a6d68",
|
|
28
28
|
"chrome-launcher": "^0.15.2",
|
|
29
29
|
"chromium-edge-launcher": "^0.2.0",
|
|
30
30
|
"connect": "^3.6.5",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"node": ">= 20.19.4"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@react-native/debugger-shell": "0.84.0-nightly-
|
|
42
|
+
"@react-native/debugger-shell": "0.84.0-nightly-20251204-5bb3a6d68",
|
|
43
43
|
"selfsigned": "^4.0.0",
|
|
44
44
|
"undici": "^5.29.0",
|
|
45
45
|
"wait-for-expect": "^3.0.2"
|