├── .gitignore ├── LICENSE ├── README.md ├── bin └── rnx ├── package.json ├── pom.xml ├── scripts ├── app.sh ├── build.sh ├── build:android.sh ├── build:ios.sh ├── lint.sh ├── release.sh ├── start.sh ├── test.sh ├── watch.sh └── xcode.sh └── util ├── build.android.sh ├── build.ios.sh ├── bundle.sh ├── checkPort.sh ├── freePort.sh ├── killProcess.sh ├── logger.sh ├── npmDiff.sh ├── postTest.sh ├── set_hardware_keyboard.applescript ├── start-simulator.ios.js ├── test-e2e.sh └── test-unit.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/README.md -------------------------------------------------------------------------------- /bin/rnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/bin/rnx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/package.json -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/pom.xml -------------------------------------------------------------------------------- /scripts/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/scripts/app.sh -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/build:android.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -e 2 | $rnxRoot/scripts/build.sh $1 --skip-ios -------------------------------------------------------------------------------- /scripts/build:ios.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -e 2 | $rnxRoot/scripts/build.sh $1 --skip-android -------------------------------------------------------------------------------- /scripts/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/scripts/lint.sh -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/scripts/start.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/scripts/watch.sh -------------------------------------------------------------------------------- /scripts/xcode.sh: -------------------------------------------------------------------------------- 1 | open ./ios/$npm_package_config_appName.xcodeproj -------------------------------------------------------------------------------- /util/build.android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/util/build.android.sh -------------------------------------------------------------------------------- /util/build.ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/util/build.ios.sh -------------------------------------------------------------------------------- /util/bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/util/bundle.sh -------------------------------------------------------------------------------- /util/checkPort.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/util/checkPort.sh -------------------------------------------------------------------------------- /util/freePort.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/util/freePort.sh -------------------------------------------------------------------------------- /util/killProcess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/util/killProcess.sh -------------------------------------------------------------------------------- /util/logger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/util/logger.sh -------------------------------------------------------------------------------- /util/npmDiff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/util/npmDiff.sh -------------------------------------------------------------------------------- /util/postTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/util/postTest.sh -------------------------------------------------------------------------------- /util/set_hardware_keyboard.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/util/set_hardware_keyboard.applescript -------------------------------------------------------------------------------- /util/start-simulator.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/util/start-simulator.ios.js -------------------------------------------------------------------------------- /util/test-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/util/test-e2e.sh -------------------------------------------------------------------------------- /util/test-unit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wix-incubator/react-native-extended-cli/HEAD/util/test-unit.sh --------------------------------------------------------------------------------