mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-15 01:48:34 -07:00
react-native: add iPad and Apple TV simulator aliases (#7603)
This commit is contained in:
parent
9975b16297
commit
f03aa42cbb
@ -33,6 +33,23 @@ plugins=(... react-native)
|
||||
| **rniosxs** | `react-native run-ios --simulator "iPhone XS"` |
|
||||
| **rniosxsm** | `react-native run-ios --simulator "iPhone XS Max"` |
|
||||
| **rniosxr** | `react-native run-ios --simulator "iPhone XR"` |
|
||||
| _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` |
|
||||
|
@ -19,5 +19,22 @@ alias rniosxs='react-native run-ios --simulator "iPhone XS"'
|
||||
alias rniosxsm='react-native run-ios --simulator "iPhone XS Max"'
|
||||
alias rniosxr='react-native run-ios --simulator "iPhone XR"'
|
||||
|
||||
alias rnipad2='react-native run-ios --simulator "iPad 2"'
|
||||
alias rnipadr='react-native run-ios --simulator "iPad Retina"'
|
||||
alias rnipada='react-native run-ios --simulator "iPad Air"'
|
||||
alias rnipada2='react-native run-ios --simulator "iPad Air 2"'
|
||||
alias rnipad5='react-native run-ios --simulator "iPad (5th generation)"'
|
||||
alias rnipad9='react-native run-ios --simulator "iPad Pro (9.7-inch)"'
|
||||
alias rnipad12='react-native run-ios --simulator "iPad Pro (12.9-inch)"'
|
||||
alias rnipad122='react-native run-ios --simulator "iPad Pro (12.9-inch) (2nd generation)"'
|
||||
alias rnipad10='react-native run-ios --simulator "iPad Pro (10.5-inch)"'
|
||||
alias rnipad6='react-native run-ios --simulator "iPad Pro (6th generation)"'
|
||||
alias rnipad11='react-native run-ios --simulator "iPad Pro (11-inch)"'
|
||||
alias rnipad123='react-native run-ios --simulator "iPad Pro (12.9-inch) (3rd generation)"'
|
||||
|
||||
alias rnatv='react-native run-ios --simulator "Apple TV"'
|
||||
alias rnatv4k='react-native run-ios --simulator "Apple TV 4K"'
|
||||
alias rnatv4k1080='react-native run-ios --simulator "Apple TV 4K (at 1080p)"'
|
||||
|
||||
alias rnland='react-native log-android'
|
||||
alias rnlios='react-native log-ios'
|
||||
|
Loading…
Reference in New Issue
Block a user