0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-12 04:01:14 +02:00

feat(react-native): add aliases for iPhone 15 (#12114)

This commit is contained in:
Nidelson Gimenez 2023-12-24 05:40:51 -03:00 committed by GitHub
parent 9004c177ba
commit f74add6cb2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View file

@ -54,6 +54,10 @@ plugins=(... react-native)
| **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"` |
| **rnios15** | `react-native run-ios --simulator "iPhone 15"` |
| **rnios15pl** | `react-native run-ios --simulator "iPhone 15 Plus"` |
| **rnios15p** | `react-native run-ios --simulator "iPhone 15 Pro"` |
| **rnios15pm** | `react-native run-ios --simulator "iPhone 15 Pro Max"` |
| _iPad_ | |
| **rnipad2** | `react-native run-ios --simulator "iPad 2"` |
| **rnipad5** | `react-native run-ios --simulator "iPad (5th generation)"` |

View file

@ -39,6 +39,10 @@ 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"'
alias rnios15='react-native run-ios --simulator "iPhone 15"'
alias rnios15pl='react-native run-ios --simulator "iPhone 15 Plus"'
alias rnios15p='react-native run-ios --simulator "iPhone 15 Pro"'
alias rnios15pm='react-native run-ios --simulator "iPhone 15 Pro Max"'
# iPad
alias rnipad2='react-native run-ios --simulator "iPad 2"'