react-native-get-pixel_edit/node_modules/@react-native-community/cli-tools/build/launchPackager.command
2025-07-09 11:41:52 +09:00

13 lines
320 B
Bash

#!/bin/bash
THIS_DIR=$(cd -P "$(dirname "$(readlink "${BASH_SOURCE[0]}" || echo "${BASH_SOURCE[0]}")")" && pwd)
source "$THIS_DIR/.packager.env"
cd $PROJECT_ROOT
$REACT_NATIVE_PATH/cli.js start --port $RCT_METRO_PORT
if [[ -z "$CI" ]]; then
echo "Process terminated. Press <enter> to close the window"
read -r
fi