0.0.1 • Published 6 years ago

build-status-webpack-plugin v0.0.1

Weekly downloads
3
License
ISC
Repository
github
Last release
6 years ago

Build Status Webpack Plugin

Set the logLevel property to 'silent' for the dev server/middleware to suppress the ugly default output.

Do the same for the hot middleware if you're using one.

Import the build-status-webpack-plugin package in your webpack config and add the imported class as a plugin:

const BuildStatusPlugin = require('build-status-webpack-plugin')


module.exports = {
  plugins: [ new BuildStatusPlugin() ],
  devServer: {
    logLevel: 'silent',
  }
}

Next time you run webpack, the console should output the build progress in a nice, clean format instead of its regular diarrhea-of-stdouting.

You're welcome :---)