gruntjs / grunt-contrib-sass

Compile Sass to CSS.
http://gruntjs.com/
MIT License
848 stars 141 forks source link

Output error into Browser #164

Closed picard102 closed 10 years ago

picard102 commented 10 years ago

When running Sass before grunt, anytime there was an error in the scss files it would output the error to the browser. Is there an option to have it do the same with grunt, rather than have the errors in the console?

sindresorhus commented 10 years ago

This task just calls the Sass binary and supports any options sass supports. sass --help.

picard102 commented 10 years ago

I guess what I'm looking for then is a way to have full_exception while using this along side contrib-watch. I tried passing a true value for full_exception and I got that it was an invalid option as a response. Should I be using a different sass grunt plugin for watch?