I\'m not able to get grunt-sass to compile to .css. Have seen a load of other similar posts and utilized suggestions but nothing seems to work.
I can get other plugins w
If you want the sass task to execute when you run gulp from the command-line, add it as a dependency of the default task:
sass
gulp
default
gulp.task('default', ['sass'], function() { //other stuff });