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/51688 Changelog: [Internal] # Context See D74904547. ## This diff Creates the `react-native/debugger-shell` package, containing a basic implementation of an Electron-based shell for React Native DevTools. At this point, there is no direct dependency on the new package from the rest of React Native - it's designed to be used as part of a Meta-internal experimental rollout of the new debugger shell via the `BrowserLauncher` interface in `dev-middleware`. Reviewed By: huntie Differential Revision: D74820232 fbshipit-source-id: cb06ea9e2ed8c8822019cad8296cc19e69f9db0b
20 lines
412 B
JavaScript
20 lines
412 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
|
|
* @format
|
|
*/
|
|
|
|
/*::
|
|
export type * from './index.flow';
|
|
*/
|
|
|
|
if (!process.env.BUILD_EXCLUDE_BABEL_REGISTER) {
|
|
require('../../../../scripts/babel-register').registerForMonorepo();
|
|
}
|
|
|
|
export * from './index.flow';
|