build-notify-webpack-plugin
v1.0.1
Published
A Webpack plugin to publish desktop notifications upon build completion
Downloads
2
Readme
build-notify-webpack-plugin
A Webpack plugin to publish desktop notifications upon build completion
Usage
const Notifier = require('build-notify-webpack-plugin');
...
plugins: [
...
new Notifier({
// Notification title; defaults to package.json.name
title: 'Good News Everyone!',
// Path to optional notification image
logo: path.join('assets', 'hooray.png')
})
]