mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-15 01:48:34 -07:00
Added expo plugin
This commit is contained in:
parent
3b1699b595
commit
13b8a572c6
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 New Issue
Block a user