From 2b76bee2d187895ac489b820872b5c1249281546 Mon Sep 17 00:00:00 2001 From: Carey Janecka Date: Wed, 18 Apr 2018 11:19:49 -0700 Subject: [PATCH] Add alias for yarn remove Adds a simple alias that maps `yr` to `yarn remove`, also removes extra whitespace from `y` alias --- plugins/yarn/yarn.plugin.zsh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/yarn/yarn.plugin.zsh b/plugins/yarn/yarn.plugin.zsh index 5fa51237..83ef5ef4 100644 --- a/plugins/yarn/yarn.plugin.zsh +++ b/plugins/yarn/yarn.plugin.zsh @@ -1,7 +1,8 @@ # Alias sorted alphabetically -alias y="yarn " +alias y="yarn" alias ya="yarn add" +alias yr="yarn remove" alias ycc="yarn cache clean" alias yh="yarn help" alias yo="yarn outdated"