cli.js 359 B

12345678910111213141516171819
  1. #!/usr/bin/env node
  2. /**
  3. * Copyright (c) Facebook, Inc. and its affiliates.
  4. *
  5. * This source code is licensed under the MIT license found in the
  6. * LICENSE file in the root directory of this source tree.
  7. *
  8. * @format
  9. */
  10. 'use strict';
  11. var cli = require('@react-native-community/cli');
  12. if (require.main === module) {
  13. cli.run();
  14. }
  15. module.exports = cli;