I\'m using gulp-plumber + gulp-notify and want to put task name in gulp-notify as a title. following is the code i wrote, thanks in advance.
gulp.task(\'SOMETASK
gulp.task('SOMETASK',function() { console.log('Task name:', this.seq.slice(-1)[0]) // Task name: SOMETASK })