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
With gulp-sass v2.0.4, this works:
.pipe(sass()) .on('error', notify.onError(function (error) { return 'An error occurred while compiling sass.\nLook in the console for details.\n' + error; }))