mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/53435 Changelog: [Internal] Support setting `enableStandaloneFuseboxShell: true` in OSS with no custom `BrowserLauncher` Makes it possible for frameworks to enable the React Native DevTools standalone shell in open source by passing `unstable_experiments: {enableStandaloneFuseboxShell: true}` to `createDevMiddleware()`. When this experiment is enabled: * The RNDT shell binary will be prefetched in the background as soon as the dev server starts (into a local cache managed by [DotSlash](https://dotslash-cli.com/)). * If prefetching is successful, then "Open DevTools" actions will be handled by launching the RNDT frontend in the standalone shell, instead of in Chrome/Edge. * If prefetching is not successful, then we'll notify the user about the error, and "Open DevTools" will continue to be handled by Chrome/Edge, as before. * If the user attempts to open DevTools more than once for the same app, the standalone shell will reuse the existing window (as opposed to the current behaviour of always creating a new Chrome/Edge window). * The appropriate DevTools window will automatically foreground itself upon pausing on a breakpoint. Reviewed By: huntie Differential Revision: D78351937 fbshipit-source-id: 6d5baa8fa866760f1d527108cd3c42bcab68cf57
25 lines
720 B
JavaScript
25 lines
720 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow strict-local
|
|
* @format
|
|
*/
|
|
|
|
export {default as createDevMiddleware} from './createDevMiddleware';
|
|
|
|
export type {
|
|
BrowserLauncher,
|
|
DebuggerShellPreparationResult,
|
|
} from './types/BrowserLauncher';
|
|
export type {EventReporter, ReportableEvent} from './types/EventReporter';
|
|
export type {
|
|
CustomMessageHandler,
|
|
CustomMessageHandlerConnection,
|
|
CreateCustomMessageHandlerFn,
|
|
} from './inspector-proxy/CustomMessageHandler';
|
|
|
|
export {default as unstable_DefaultBrowserLauncher} from './utils/DefaultBrowserLauncher';
|