kulesa / webpack-anybar

Report Webpack build status to AnyBar

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#webpack-anybar

Webpack plugin that uses AnyBar to inform about build status.

Installation

You need to install AnyBar first. Then install the plugin npm:

npm install --save-dev webpack-anybar

Usage

In Webpack config file:

var WebpackAnyBar = require('webpack-anybar');

// ...
  module: {
    plugins: [
      new WebpackAnyBar(),
    ]
  },
// ...

You can pass port number, but that's optional:

new WebpackAnyBar({port: 1234});

Then just start webpack -wc and watch the build status.

About

Report Webpack build status to AnyBar

License:ISC License


Languages

Language:JavaScript 100.0%