Skip to content

Instantly share code, notes, and snippets.

@chriskief
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chriskief/9266192 to your computer and use it in GitHub Desktop.
Save chriskief/9266192 to your computer and use it in GitHub Desktop.
# install sass
sudo gem install sass
# install grunt cli globally
sudo npm install -g grunt-cli
# note - switch to project directory where Gruntfile.coffee and package.json are sitting
# install dependencies
npm install
# run it (default is to watch both sass and coffeescript files)
grunt
# other tasks (compile once)
grunt sass
grunt coffee
# you can also explicitly call the watch task
grunt watch
# all commands are detailed by running the following
grunt --help
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment