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 1.0.0 to 1.0.1

5

CHANGELOG.md
# Changelog
#### 1.0.1
###### _April 16, 2019_
- Updated README to include TS usage example.
#### 1.0.0

@@ -4,0 +9,0 @@ ###### _April 16, 2019_

2

package.json
{
"name": "webpack-build-notifier",
"version": "1.0.0",
"version": "1.0.1",
"description": "A Webpack plugin that generates OS notifications for build steps using node-notifier.",

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

@@ -118,2 +118,22 @@ # webpack-build-notifier

```javascript
// webpack.config.ts
import * as webpack from 'webpack'
import * as WebpackBuildNotifierPlugin from 'webpack-build-notifier';
const config: webpack.Configuration = {
// ... snip ...
plugins: [
new WebpackBuildNotifierPlugin({
title: "My Project Webpack Build",
logo: path.resolve("./img/favicon.png"),
suppressSuccess: true
})
],
// ... snip ...
};
export default config;
```
Future Improvements

@@ -120,0 +140,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