dylang / grunt-notify

Automatic Notifications when Grunt tasks fail.
https://npmjs.org/package/grunt-notify
MIT License
921 stars 73 forks source link

feature_request(notifications): All success notify #128

Closed Kristinita closed 6 years ago

Kristinita commented 6 years ago

1. Summary

It would be nice, if will be added an option, that grunt-notify will notify, that all tasks successful run.

2. Argumentation

For big project I need wait a couple of minutes, that all my tasks will run. I want to know, when all my tasks successful run, that I can again quickly start working with Grunt.

Now is possible get notifications only for each task. I think, that notification for each of a variety of tasks — it's information noise for a big project.

3. Project

For example, I use many Grunt tasks in my real project.

I have success: true in grunt-notify options.

4. Actual behavior

I get many notifications — 1 notification for 1 task. But I think, that it is useless behavior for many tasks.

5. Expected behavior

If, for example, all_success: true:

    I get 1 notification, when all tasks successful run.

Thanks.

Kristinita commented 6 years ago

I can place notify task in the end of chain of my tasks. It solve the problem.

Thanks.