Created
December 23, 2013 00:49
-
-
Save zakdances/8090292 to your computer and use it in GitHub Desktop.
Grunt Cheatsheet
This file contains hidden or 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
in .bash_profile: | |
# Install a grunt plugin and save to devDependencies | |
function gi() { | |
npm install --save-dev grunt-"$@" | |
} | |
# Install a grunt-contrib plugin and save to devDependencies | |
function gic() { | |
npm install --save-dev grunt-contrib-"$@" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment