1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-12-18 10:22:00 +00:00

feat(react-native): add aliases for 2021 and 2022 iOS devices (#11191)

This commit is contained in:
Preet Patel 2022-10-04 03:22:18 +13:00 committed by GitHub
parent 7dcabbe682
commit 74235e8aea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 85 additions and 64 deletions

View file

@ -12,7 +12,7 @@ plugins=(... react-native)
## Aliases
| Alias | React Native command |
| :------------ | :------------------------------------------------- |
| :------------ | :----------------------------------------------------- |
| **rn** | `react-native` |
| **rns** | `react-native start` |
| **rnlink** | `react-native link` |
@ -42,6 +42,19 @@ plugins=(... react-native)
| **rnios11** | `react-native run-ios --simulator "iPhone 11"` |
| **rnios11p** | `react-native run-ios --simulator "iPhone 11 Pro"` |
| **rnios11pm** | `react-native run-ios --simulator "iPhone 11 Pro Max"` |
| **rnios12** | `react-native run-ios --simulator "iPhone 12"` |
| **rnios12m** | `react-native run-ios --simulator "iPhone 12 mini"` |
| **rnios12p** | `react-native run-ios --simulator "iPhone 12 Pro"` |
| **rnios12pm** | `react-native run-ios --simulator "iPhone 12 Pro Max"` |
| **rnios13** | `react-native run-ios --simulator "iPhone 13"` |
| **rnios13m** | `react-native run-ios --simulator "iPhone 13 mini"` |
| **rnios13p** | `react-native run-ios --simulator "iPhone 13 Pro"` |
| **rnios13pm** | `react-native run-ios --simulator "iPhone 13 Pro Max"` |
| **rnios14** | `react-native run-ios --simulator "iPhone 14"` |
| **rnios14pl** | `react-native run-ios --simulator "iPhone 14 Plus"` |
| **rnios14p** | `react-native run-ios --simulator "iPhone 14 Pro"` |
| **rnios14pm** | `react-native run-ios --simulator "iPhone 14 Pro Max"` |
| _iPad_ | |
| **rnipad2** | `react-native run-ios --simulator "iPad 2"` |
| **rnipad5** | `react-native run-ios --simulator "iPad (5th generation)"` |

View file

@ -28,9 +28,17 @@ alias rnios11='react-native run-ios --simulator "iPhone 11"'
alias rnios11p='react-native run-ios --simulator "iPhone 11 Pro"'
alias rnios11pm='react-native run-ios --simulator "iPhone 11 Pro Max"'
alias rnios12='react-native run-ios --simulator "iPhone 12"'
alias rnios12m='react-native run-ios --simulator "iPhone 12 mini"'
alias rnios12p='react-native run-ios --simulator "iPhone 12 Pro"'
alias rnios12pm='react-native run-ios --simulator "iPhone 12 Pro Max"'
alias rnios13='react-native run-ios --simulator "iPhone 13"'
alias rnios13m='react-native run-ios --simulator "iPhone 13 mini"'
alias rnios13p='react-native run-ios --simulator "iPhone 13 Pro"'
alias rnios13pm='react-native run-ios --simulator "iPhone 13 Pro Max"'
alias rnios14='react-native run-ios --simulator "iPhone 14"'
alias rnios14pl='react-native run-ios --simulator "iPhone 14 Plus"'
alias rnios14p='react-native run-ios --simulator "iPhone 14 Pro"'
alias rnios14pm='react-native run-ios --simulator "iPhone 14 Pro Max"'
# iPad
alias rnipad2='react-native run-ios --simulator "iPad 2"'