1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-21 15:30:09 +00:00
ohmyzsh/plugins/react-native/README.md
Ibrahim Almuqrin adade64cda react-native: use new iOS simulator names (#7717)
The simulator names changed after updating to Xcode 10.2 (iOS 12.2 SDK)
I don't know how to prevent this change from affecting those who didn't update yet, but it worth noting that updating is now required in order to submit iOS apps to the App Store.
2019-04-25 16:14:17 +02:00

56 lines
4.2 KiB
Markdown

# React Native plugin
This plugin adds completion for [`react-native`](https://facebook.github.io/react-native/).
It also defines a few [aliases](#aliases) for the commands more frequently used.
To enable, add `react-native` to your `plugins` array in your zshrc file:
```zsh
plugins=(... react-native)
```
## Aliases
| Alias | React Native command |
| :------------ | :------------------------------------------------- |
| **rn** | `react-native` |
| **rns** | `react-native start` |
| **rnlink** | `react-native link` |
| _App testing_ |
| **rnand** | `react-native run-android` |
| **rnios** | `react-native run-ios` |
| **rnios4s** | `react-native run-ios --simulator "iPhone 4s"` |
| **rnios5** | `react-native run-ios --simulator "iPhone 5"` |
| **rnios5s** | `react-native run-ios --simulator "iPhone 5s"` |
| **rnios6** | `react-native run-ios --simulator "iPhone 6"` |
| **rnios6s** | `react-native run-ios --simulator "iPhone 6s"` |
| **rnios7** | `react-native run-ios --simulator "iPhone 7"` |
| **rnios7p** | `react-native run-ios --simulator "iPhone 7 Plus"` |
| **rnios8** | `react-native run-ios --simulator "iPhone 8"` |
| **rnios8p** | `react-native run-ios --simulator "iPhone 8 Plus"` |
| **rniosse** | `react-native run-ios --simulator "iPhone SE"` |
| **rniosx** | `react-native run-ios --simulator "iPhone X"` |
| **rniosxs** | `react-native run-ios --simulator "iPhone Xs"` |
| **rniosxsm** | `react-native run-ios --simulator "iPhone Xs Max"` |
| **rniosxr** | `react-native run-ios --simulator "iPhone Xʀ"` |
| _iPads_ | |
| **rnipad2** | `react-native run-ios --simulator "iPad 2"` |
| **rnipadr** | `react-native run-ios --simulator "iPad Retina"` |
| **rnipada** | `react-native run-ios --simulator "iPad Air"` |
| **rnipada2** | `react-native run-ios --simulator "iPad Air 2"` |
| **rnipad5** | `react-native run-ios --simulator "iPad (5th generation)"` |
| **rnipad9** | `react-native run-ios --simulator "iPad Pro (9.7-inch)"` |
| **rnipad12** | `react-native run-ios --simulator "iPad Pro (12.9-inch)"` |
| **rnipad122** | `react-native run-ios --simulator "iPad Pro (12.9-inch) (2nd generation)"` |
| **rnipad10** | `react-native run-ios --simulator "iPad Pro (10.5-inch)"` |
| **rnipad6** | `react-native run-ios --simulator "iPad Pro (6th generation)"` |
| **rnipad11** | `react-native run-ios --simulator "iPad Pro (11-inch)"` |
| **rnipad123** | `react-native run-ios --simulator "iPad Pro (12.9-inch) (3rd generation)"` |
| _Apple TVs_ | |
| **rnatv** | `react-native run-ios --simulator "Apple TV"` |
| **rnatv4k** | `react-native run-ios --simulator "Apple TV 4K"` |
| **rnatv4k1080**| `react-native run-ios --simulator "Apple TV 4K (at 1080p)"` |
| _Logging_ |
| **rnland** | `react-native log-android` |
| **rnlios** | `react-native log-ios` |