2015-04-03 20:00:23 -05:00
|
|
|
/**
|
2018-09-11 15:27:47 -07:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2015-10-20 09:53:54 -07:00
|
|
|
*
|
2018-02-16 18:24:55 -08:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2018-05-11 12:43:49 -07:00
|
|
|
*
|
|
|
|
* @format
|
2015-04-03 20:00:23 -05:00
|
|
|
*/
|
2018-05-11 12:43:49 -07:00
|
|
|
|
2018-12-10 19:04:56 -08:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var cli = require('react-native-local-cli');
|
2015-04-03 20:00:23 -05:00
|
|
|
|
2015-04-07 12:33:41 -07:00
|
|
|
if (require.main === module) {
|
2018-12-10 19:04:56 -08:00
|
|
|
cli.run();
|
2015-04-07 12:33:41 -07:00
|
|
|
}
|
|
|
|
|
2018-12-10 19:04:56 -08:00
|
|
|
module.exports = cli;
|