In my gulpfile.js I have a task that calls two other tasks. When the previous tasks have run, a notification should be triggered.
gulpfile.js
var notify = requi
You can use node-notifier directly:
var notifier = require('node-notifier'); gulp.task('build', ['build:js', 'build:css'], function() { notifier.notify({ title: 'Production Build', message: 'Done' }); });