mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-23 22:30:07 +00:00
Added expo plugin
This commit is contained in:
parent
3b1699b595
commit
13b8a572c6
2 changed files with 28 additions and 0 deletions
21
plugins/expo/README.md
Normal file
21
plugins/expo/README.md
Normal 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 |
|
7
plugins/expo/expo.plugin.zsh
Normal file
7
plugins/expo/expo.plugin.zsh
Normal 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"
|
Loading…
Reference in a new issue