1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2026-04-10 16:32:00 +00:00

Compare commits

...

2 Commits

Author SHA1 Message Date
Kapil Pau
12af5de5cf Merge 13b8a572c6 into 7c10d9839f 2026-04-07 21:04:16 +00:00
Kapil Pau
13b8a572c6 Added expo plugin 2020-10-24 11:44:19 +01:00
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"