summaryrefslogtreecommitdiff
path: root/plugins/react-native
diff options
context:
space:
mode:
authorNidelson Gimenez <nidelson@gmail.com>2023-12-24 05:40:51 -0300
committerGitHub <noreply@github.com>2023-12-24 09:40:51 +0100
commitf74add6cb215b55722f9e64273be82d7bae5014e (patch)
tree02573cff26e2c11a2cd5ce0856621c0965e9c8bb /plugins/react-native
parent9004c177bac951f46ab1ec5b74a8bcfb8e3c686b (diff)
downloadzsh-f74add6cb215b55722f9e64273be82d7bae5014e.tar.gz
zsh-f74add6cb215b55722f9e64273be82d7bae5014e.tar.bz2
zsh-f74add6cb215b55722f9e64273be82d7bae5014e.zip
feat(react-native): add aliases for iPhone 15 (#12114)
Diffstat (limited to 'plugins/react-native')
-rw-r--r--plugins/react-native/README.md4
-rw-r--r--plugins/react-native/react-native.plugin.zsh4
2 files changed, 8 insertions, 0 deletions
diff --git a/plugins/react-native/README.md b/plugins/react-native/README.md
index 807c063a5..39eed6c68 100644
--- a/plugins/react-native/README.md
+++ b/plugins/react-native/README.md
@@ -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)"` |
diff --git a/plugins/react-native/react-native.plugin.zsh b/plugins/react-native/react-native.plugin.zsh
index afeaab4fd..9ee081248 100644
--- a/plugins/react-native/react-native.plugin.zsh
+++ b/plugins/react-native/react-native.plugin.zsh
@@ -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"'