Added expo plugin

This commit is contained in:
Kapil Pau 2020-10-24 11:44:19 +01:00
parent 3b1699b595
commit 13b8a572c6
No known key found for this signature in database
GPG Key ID: 60A6A2764B7FF70F
2 changed files with 28 additions and 0 deletions

21
plugins/expo/README.md Normal file
View File

@ -0,0 +1,21 @@
# expo plugin
This `expo` plugin sets up aliases for the [expo](https://expo.io) React-Native cli
To use it, add `expo` to the plugins array of your zshrc file:
```zsh
plugins=(... expo)
```
## Aliases
| Alias | Command |
| --- | --- |
| es | expo start |
| ei | expo install |
| eba | expo build:android |
| ebi | expo build:ios |
| el | expo login |
| eh | expo help |
| eu | expo upgrade |

View File

@ -0,0 +1,7 @@
alias es="expo start"
alias ei="expo install"
alias eba="expo build:android"
alias ebi="expo build:ios"
alias el="expo login"
alias eh="expo help"
alias eu="expo upgrade"