From 87dffa8da95795872cf09d1f9fcde55dd1e03fc4 Mon Sep 17 00:00:00 2001 From: Mauro Porras P Date: Tue, 13 Dec 2016 15:15:48 -0500 Subject: [PATCH] Add a React Native itself alias, and to start the web server --- plugins/react-native/README.md | 8 ++++++-- plugins/react-native/react-native.plugin.zsh | 2 ++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/plugins/react-native/README.md b/plugins/react-native/README.md index 78bfb6844..7511a7d98 100644 --- a/plugins/react-native/README.md +++ b/plugins/react-native/README.md @@ -1,11 +1,15 @@ -# React Native +# React Native -**Maintainer:** [BilalBudhani](https://github.com/BilalBudhani) +**Maintainers:** +[BilalBudhani](https://github.com/BilalBudhani) +[MauroPorrasP](https://github.com/mauroporrasp) ### List of Aliases Alias | React Native command ------|--------------------- +**rn** | *react-native* +**rns** | *react-native start* **rnand** | *react-native run-android* **rnios** | *react-native run-ios* **rnios4s** | *react-native run-ios --simulator "iPhone 4s"* diff --git a/plugins/react-native/react-native.plugin.zsh b/plugins/react-native/react-native.plugin.zsh index f19cba820..89d1f35f7 100644 --- a/plugins/react-native/react-native.plugin.zsh +++ b/plugins/react-native/react-native.plugin.zsh @@ -1,3 +1,5 @@ +alias rn='react-native' +alias rns='react-native start' alias rnand='react-native run-android' alias rnios4s='react-native run-ios --simulator "iPhone 4s"' alias rnios5='react-native run-ios --simulator "iPhone 5"'