Skip to content

Commit

Permalink
yarn: add aliases for common commands
Browse files Browse the repository at this point in the history
  • Loading branch information
mcornella authored and bjornreppen committed Aug 11, 2018
1 parent 2af8bb4 commit 11cfa18
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion plugins/yarn/yarn.plugin.zsh
@@ -1,6 +1,18 @@
alias y="yarn "
alias y="yarn"
alias ya="yarn add"
alias yad="yarn add --dev"
alias yap="yarn add --peer"
alias yb="yarn build"
alias ycc="yarn cache clean"
alias ygu="yarn global upgrade"
alias yh="yarn help"
alias yin="yarn install"
alias yls="yarn list"
alias yout="yarn outdated"
alias yrm="yarn remove"
alias yrun="yarn run"
alias yst="yarn start"
alias yt="yarn test"
alias yuc="yarn global upgrade && yarn cache clean"
alias yui="yarn upgrade-interactive"
alias yup="yarn upgrade"

0 comments on commit 11cfa18

Please sign in to comment.