mikaelbr/gulp-notify

Gulp notify Fails on Windows 7 with Growl.

Closed this issue · 4 comments

For some reason on the latest version I only get a gulp-notify error.

gulp-notify: [Error in notifier] Error in plugin 'gulp-notify' Command failed:

There is nothing beyond that error. And instead of using Growl it shows a small windows native bubble.

I would prefer using growl for this. Any help would be greatly appreciated. :)

I see. On Windows 7 it should work like this: If you have Growl; use growl, use balloons (native bubbles) otherwise. Could you please try the following:

var nn = require('node-notifier');
new nn.Growl().notify({
  message: 'Hello'
});

This should force use Growl and test if Growl works as it should.

And check OS version by starting the Node REPL and type in the following:

os.release();

I found an issue in the code. I fixed this and bumped version to 1.7.1, and it should use Growl properly now (if Growl is running). Please let me know if this works as expected.

Works like a charm now!

Thank you!

Wonderful!