mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
b27607f853
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/39161 Changelog: [Internal] Creates a new stub package named `react-native/debugger-frontend`, which will contain a minimal build of the Chrome DevTools frontend adapted for React Native. Initially, the compiled frontend assets will be checked into the React Native repo, but we intend to replace this with a fully automated build in CI at a later date. Reviewed By: huntie Differential Revision: D48680624 fbshipit-source-id: a24c8b019881187963d0be88e773bc0a97a2437d
16 lines
388 B
JavaScript
16 lines
388 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
|
|
* @noformat
|
|
*/
|
|
|
|
const path = require('path');
|
|
|
|
const frontEndPath = path.join(__dirname, 'dist', 'third-party', 'front_end');
|
|
|
|
module.exports = (frontEndPath /*: string */);
|