Fix yarn alias that conflicts with yeoman cli

Yeoman cli alias is 'yo' so 'yarn outdated' can't be aliased to 'yo'.
See: http://yeoman.io/
This commit is contained in:
xgarrett 2017-11-26 00:36:18 +01:00
parent e273cf004e
commit 78a0b9a7fe

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" # yo would conflict with yeoman which is quite popular in yarn community
alias yui="yarn upgrade-interactive"
_yarn ()