├── .gitignore ├── LICENSE ├── README.md ├── completion └── rn-utils ├── npm_scripts └── install ├── package.json ├── rn-utils ├── scripts ├── .completion ├── .utils │ ├── android │ │ └── selectConnectedAndroidDevice │ └── testUtils ├── android │ ├── .completion │ ├── assemble-release │ │ ├── .completion │ │ └── assemble-release │ ├── bundle-release │ │ ├── .completion │ │ └── bundle-release │ ├── install-apk-release │ │ ├── .completion │ │ └── install-apk-release │ ├── install-bundle-release │ │ ├── .completion │ │ └── install-bundle-release │ └── reverse │ │ ├── .completion │ │ └── reverse ├── clear │ ├── .completion │ └── clear └── ios │ ├── .completion │ └── remove-derived-data │ ├── .completion │ └── remove-derived-data ├── utils └── checkPackageUpdateAvailable.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObidosDev/rn-utils/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObidosDev/rn-utils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObidosDev/rn-utils/HEAD/README.md -------------------------------------------------------------------------------- /completion/rn-utils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObidosDev/rn-utils/HEAD/completion/rn-utils -------------------------------------------------------------------------------- /npm_scripts/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObidosDev/rn-utils/HEAD/npm_scripts/install -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObidosDev/rn-utils/HEAD/package.json -------------------------------------------------------------------------------- /rn-utils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObidosDev/rn-utils/HEAD/rn-utils -------------------------------------------------------------------------------- /scripts/.completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObidosDev/rn-utils/HEAD/scripts/.completion -------------------------------------------------------------------------------- /scripts/.utils/android/selectConnectedAndroidDevice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObidosDev/rn-utils/HEAD/scripts/.utils/android/selectConnectedAndroidDevice -------------------------------------------------------------------------------- /scripts/.utils/testUtils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObidosDev/rn-utils/HEAD/scripts/.utils/testUtils -------------------------------------------------------------------------------- /scripts/android/.completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObidosDev/rn-utils/HEAD/scripts/android/.completion -------------------------------------------------------------------------------- /scripts/android/assemble-release/.completion: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/android/assemble-release/assemble-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObidosDev/rn-utils/HEAD/scripts/android/assemble-release/assemble-release -------------------------------------------------------------------------------- /scripts/android/bundle-release/.completion: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/android/bundle-release/bundle-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObidosDev/rn-utils/HEAD/scripts/android/bundle-release/bundle-release -------------------------------------------------------------------------------- /scripts/android/install-apk-release/.completion: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/android/install-apk-release/install-apk-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObidosDev/rn-utils/HEAD/scripts/android/install-apk-release/install-apk-release -------------------------------------------------------------------------------- /scripts/android/install-bundle-release/.completion: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/android/install-bundle-release/install-bundle-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObidosDev/rn-utils/HEAD/scripts/android/install-bundle-release/install-bundle-release -------------------------------------------------------------------------------- /scripts/android/reverse/.completion: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/android/reverse/reverse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObidosDev/rn-utils/HEAD/scripts/android/reverse/reverse -------------------------------------------------------------------------------- /scripts/clear/.completion: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/clear/clear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObidosDev/rn-utils/HEAD/scripts/clear/clear -------------------------------------------------------------------------------- /scripts/ios/.completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObidosDev/rn-utils/HEAD/scripts/ios/.completion -------------------------------------------------------------------------------- /scripts/ios/remove-derived-data/.completion: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/ios/remove-derived-data/remove-derived-data: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -rf $HOME/Library/Developer/Xcode/DerivedData 4 | 5 | exit 0 -------------------------------------------------------------------------------- /utils/checkPackageUpdateAvailable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObidosDev/rn-utils/HEAD/utils/checkPackageUpdateAvailable.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObidosDev/rn-utils/HEAD/yarn.lock --------------------------------------------------------------------------------