From 55457187d18221e76bd12f0fb2cfab65c49b92fb Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 5 Mar 2019 01:09:01 +0100 Subject: Initial commit --- .../plugins/react-native/react-native.plugin.zsh | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .oh-my-zsh/plugins/react-native/react-native.plugin.zsh (limited to '.oh-my-zsh/plugins/react-native/react-native.plugin.zsh') diff --git a/.oh-my-zsh/plugins/react-native/react-native.plugin.zsh b/.oh-my-zsh/plugins/react-native/react-native.plugin.zsh new file mode 100644 index 0000000..220aa2d --- /dev/null +++ b/.oh-my-zsh/plugins/react-native/react-native.plugin.zsh @@ -0,0 +1,23 @@ +alias rn='react-native' +alias rns='react-native start' +alias rnlink='react-native link' + +alias rnand='react-native run-android' +alias rnios='react-native run-ios' +alias rnios4s='react-native run-ios --simulator "iPhone 4s"' +alias rnios5='react-native run-ios --simulator "iPhone 5"' +alias rnios5s='react-native run-ios --simulator "iPhone 5s"' +alias rnios6='react-native run-ios --simulator "iPhone 6"' +alias rnios6s='react-native run-ios --simulator "iPhone 6s"' +alias rnios7='react-native run-ios --simulator "iPhone 7"' +alias rnios7p='react-native run-ios --simulator "iPhone 7 Plus"' +alias rnios8='react-native run-ios --simulator "iPhone 8"' +alias rnios8p='react-native run-ios --simulator "iPhone 8 Plus"' +alias rniosse='react-native run-ios --simulator "iPhone SE"' +alias rniosx='react-native run-ios --simulator "iPhone X"' +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 rnland='react-native log-android' +alias rnlios='react-native log-ios' -- cgit v1.2.3