# 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