Browse Source

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/
Przemysław Włodek 6 years ago
parent
commit
f258bcba8d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/yarn/yarn.plugin.zsh

+ 1 - 1
plugins/yarn/yarn.plugin.zsh

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