mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
Fix yarn alias that conflicts with yeoman cli (#6453)
Yeoman cli alias is 'yo' so 'yarn outdated' can't be aliased to 'yo'. See: http://yeoman.io/
This commit is contained in:
parent
e96a7b728a
commit
f258bcba8d
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ alias y="yarn "
|
|||
alias ya="yarn add"
|
||||
alias ycc="yarn cache clean"
|
||||
alias yh="yarn help"
|
||||
alias yo="yarn outdated"
|
||||
alias yout="yarn outdated"
|
||||
alias yui="yarn upgrade-interactive"
|
||||
|
||||
_yarn ()
|
||||
|
|
Loading…
Reference in a new issue