webpack-build-notifier
Advanced tools
Comparing version 0.1.11 to 0.1.12
@@ -111,3 +111,3 @@ /** | ||
title += 'Error'; | ||
msg = error.module.rawRequest + '\n' + (error.message ? error.message.replace(error.module.resource, '') : ''); | ||
msg = (error.module ? error.module.rawRequest : '') + '\n' + (error.message ? error.message.replace(error.module ? error.module.resource : '', '') : ''); | ||
icon = this.failureIcon; | ||
@@ -120,3 +120,3 @@ sound = this.failureSound; | ||
title += 'Warning'; | ||
msg = warning.module.rawRequest + '\n' + (warning.message ? warning.message.replace(warning.module.resource, '') : ''); | ||
msg = (warning.module ? warning.module.rawRequest : '') + '\n' + (warning.message ? warning.message.replace(warning.module ? warning.module.resource : '', '') : ''); | ||
icon = this.warningIcon; | ||
@@ -123,0 +123,0 @@ sound = this.failureSound; |
{ | ||
"name": "webpack-build-notifier", | ||
"version": "0.1.11", | ||
"version": "0.1.12", | ||
"description": "A Webpack plugin that generates OS notifications for build steps using node-notifier.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -84,2 +84,8 @@ # webpack-build-notifier | ||
--------- | ||
#### 1.0.12 | ||
###### _July 25, 2016_ | ||
- Bugfix for #6, more null checking. | ||
#### 1.0.11 | ||
@@ -86,0 +92,0 @@ ###### _July 16, 2016_ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
104656
119