Socket
Socket
Sign inDemoInstall

webpack-build-notifier

Package Overview
Dependencies
Maintainers
1
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webpack-build-notifier - npm Package Compare versions

Comparing version 0.1.10 to 0.1.11

4

index.js

@@ -111,3 +111,3 @@ /**

title += 'Error';
msg = error.module.rawRequest + '\n' + error.error.replace(error.module.resource, '');
msg = error.module.rawRequest + '\n' + (error.message ? error.message.replace(error.module.resource, '') : '');
icon = this.failureIcon;

@@ -120,3 +120,3 @@ sound = this.failureSound;

title += 'Warning';
msg = warning.module.rawRequest + '\n' + warning.warning.replace(warning.module.resource, '');
msg = warning.module.rawRequest + '\n' + (warning.message ? warning.message.replace(warning.module.resource, '') : '');
icon = this.warningIcon;

@@ -123,0 +123,0 @@ sound = this.failureSound;

{
"name": "webpack-build-notifier",
"version": "0.1.10",
"version": "0.1.11",
"description": "A Webpack plugin that generates OS notifications for build steps using node-notifier.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -84,2 +84,7 @@ # webpack-build-notifier

---------
#### 1.0.11
###### _July 16, 2016_
- Bugfix for #6; added null check for error messages.
#### 1.0.10

@@ -86,0 +91,0 @@ ###### _July 14, 2016_

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