1.0.1 • Published 6 years ago

build-notify-webpack-plugin v1.0.1

Weekly downloads
21
License
MIT
Repository
github
Last release
6 years ago

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')
      })
   ]