I wondered if there is a way to have notify display a message on gulp-sass error. preferably the actual message that is displayed in the console.
my gulp task looks
This is works too:
/* Compile sass, and output error to notif */ .pipe(sass({}).on('error', function(err) { return notify().write(err); }))