Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulp-notify

Package Overview
Dependencies
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-notify - npm Package Compare versions

Comparing version 0.0.7 to 0.0.8

5

index.js
var es = require("event-stream"),
path = require("path"),
gutil = require("gulp-util"),
notifier = require("node-notifier");

@@ -14,6 +15,6 @@

if (!reporter) {
return callback(new Error("gulp-notify: No reporter specified."), undefined);
return callback(new gutil.PluginError("gulp-notify", "No reporter specified."), undefined);
}
reporter(constructOptions(options, file), function (err) {
if (err) return callback(err);
if (err) return callback(new gutil.PluginError("gulp-notify", err));
callback(null, file);

@@ -20,0 +21,0 @@ });

6

package.json
{
"name": "gulp-notify",
"version": "0.0.7",
"version": "0.0.8",
"description": "A plugin for Gulp to send messages to Mac Notification Center",

@@ -29,3 +29,4 @@ "keywords": [

"event-stream": "*",
"node-notifier": "~1.0.0-beta2"
"gulp-util": ">=2.2.9",
"node-notifier": ">=1.0.0-beta2"
},

@@ -35,3 +36,2 @@ "devDependencies": {

"should": "~2.1.0",
"gulp-util": "~2.2.5",
"gulp": "~3.2.2"

@@ -38,0 +38,0 @@ },

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc