mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 21:39:48 +01:00
yarn: add alias for yarn lint (#8481)
This commit is contained in:
parent
4338a731b7
commit
3d6be08e71
2 changed files with 2 additions and 0 deletions
|
@ -27,6 +27,7 @@ plugins=(... yarn)
|
|||
| yh | `yarn help` | Show help for a yarn command |
|
||||
| yi | `yarn init` | Interactively creates or updates a package.json file |
|
||||
| yin | `yarn install` | Install dependencies defined in `package.json` |
|
||||
| yln | `yarn lint` | Run the lint script defined in `package.json` |
|
||||
| yls | `yarn list` | List installed packages |
|
||||
| yout | `yarn outdated` | Check for outdated package dependencies |
|
||||
| yp | `yarn pack` | Create a compressed gzip archive of package dependencies |
|
||||
|
|
|
@ -12,6 +12,7 @@ alias ygu="yarn global upgrade"
|
|||
alias yh="yarn help"
|
||||
alias yi="yarn init"
|
||||
alias yin="yarn install"
|
||||
alias yln="yarn lint"
|
||||
alias yls="yarn list"
|
||||
alias yout="yarn outdated"
|
||||
alias yp="yarn pack"
|
||||
|
|
Loading…
Reference in a new issue