mirror of
https://github.com/status-im/react-native.git
synced 2025-02-23 14:48:25 +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
11 lines
370 B
Bash
Executable File
11 lines
370 B
Bash
Executable File
#!/bin/bash
|
|
# 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.
|
|
|
|
THIS_DIR=$(cd -P "$(dirname "$(readlink "${BASH_SOURCE[0]}" || echo "${BASH_SOURCE[0]}")")" && pwd)
|
|
source "${THIS_DIR}/.packager.env"
|
|
cd "$THIS_DIR/.."
|
|
node "./cli.js" start "$@"
|