mirror of
https://github.com/status-im/react-native.git
synced 2025-02-22 14:18:23 +00:00
Summary: This removes the remaining references to `local-cli`. We already have a `cli.js` file on the root that was just forwarding to the local-cli folder, so I removed that. It also seems that `setupBabel.js` is no longer necessary in RN. Reviewed By: TheSavior Differential Revision: D13396218 fbshipit-source-id: a945cb91dae39c4b58c5cabcca6b0f0328fc4717
19 lines
334 B
JavaScript
19 lines
334 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var cli = require('react-native-local-cli');
|
|
|
|
if (require.main === module) {
|
|
cli.run();
|
|
}
|
|
|
|
module.exports = cli;
|