I'm using gulp-notify within the gulp pipeline like this:
var gulp = require('gulp'),
notify = require('gulp-notify');
gulp.task('default', function () {
return gulp
.pipe(notify({ message: "Hello, world"}));
});
This logs to console, but it also creates annoying balloon popup. Any way how to get rid of that ?