sindresorhus / grunt-sass

Compile Sass to CSS
MIT License
1.01k stars 209 forks source link

Added grunt.log.writeln('Processing ' + src) as process indicator. #226

Closed 58bits closed 9 years ago

58bits commented 9 years ago

Added grunt.log.writeln('Processing ' + src) as a process indicator.

It might also be nice to display a total number of files processed (using a counter), but I confess I wasn't sure how to modify the 'completed' callback from this.async() to eachAsync.

sindresorhus commented 9 years ago

Thanks, but that's too noisy. You can see more verbose info with any task by passing the --verbose flag: $ grunt sass --verbose.

58bits commented 9 years ago

I don't think it's right to turn on --verbose for all tasks, just to get more detailed output from one.

What about a total number of files processed then? I have other tasks that at least provide a summary of what's occurred at the end of the task.