Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 1.4 KB

README.md

File metadata and controls

42 lines (31 loc) · 1.4 KB

Electrode Webpack Reporter

NPM version Build Status Dependency Status

An HTML based reporter for webpack-dev-server. Adds a new route /reporter to your webpack-dev-server HTTP server.

screenshot

Usage

const WebpackReporter = require("electrode-webpack-reporter");

const webpackConfig = {
  devServer: {
  }
};

const reporter = new WebpackReporter();
reporter.apply(webpackConfig);

//
// optional extra handling
//

reporter.on("report", (reporterOptions) => {
  if (reporterOptions.state) {
    // ... bundle is VALID
  }
});

Built with ❤️ by Team Electrode @WalmartLabs.