UNPKG

359 BJavaScriptView Raw
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
11'use strict';
12
13var cli = require('@react-native-community/cli');
14
15if (require.main === module) {
16 cli.run();
17}
18
19module.exports = cli;