Created
August 2, 2014 22:15
-
-
Save MarioAraque/322ca834a4f8024a51a3 to your computer and use it in GitHub Desktop.
Include it in your ~/.bash_profile to aliases grunt install plugins
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function gi() { | |
npm install --save-dev grunt-"$@" | |
} | |
function gci() { | |
npm install --save-dev grunt-contrib-"$@" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment