notify.js 257 B

12345678910111213
  1. // Notify end of copilation tasks
  2. 'use strict';
  3. module.exports = function (grunt) {
  4. return {
  5. watch: {
  6. options: {
  7. title: 'Task Complete', // optional
  8. message: 'SASS and Uglify finished running', //required
  9. }
  10. }
  11. };
  12. };