mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
5276599c45
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/39075 Small refactor: reorganise command entry points and types into a consistent pattern. Changelog: [Internal] Reviewed By: blakef Differential Revision: D48433284 fbshipit-source-id: 30f5780c8965e5a8a70603aec531fedcc82eeb73
17 lines
516 B
JavaScript
17 lines
516 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
|
|
* @oncall react_native
|
|
*/
|
|
|
|
export {default as bundleCommand} from './commands/bundle';
|
|
export {default as ramBundleCommand} from './commands/ram-bundle';
|
|
export {default as startCommand} from './commands/start';
|
|
|
|
export {unstable_buildBundleWithConfig} from './commands/bundle/buildBundle';
|