0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02: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:
Przemysław Włodek 2018-06-17 00:03:14 +02:00 committed by Marc Cornellà
parent e96a7b728a
commit f258bcba8d

View file

@ -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 ()