npm.io
0.0.4 • Published 6 years ago

webpack-stats-progress

Licence
MIT
Version
0.0.4
Deps
4
Size
32 kB
Vulns
0
Weekly
0
Stars
6

This plugin is intended to provide cleaner output of webpack build. It also displays a progress bar while the build is running.

Progress bar

The plugin also comes with a progress bar

Usage

In th webpack config file, add this plugin and make sure to turn off the stats

const WebpackStatsProgress = require("webpack-stats-progress");

module.exports = {
  mode: "production",
  stats: "none",
  plugins: [
    new WebpackStatsProgress({ buildFolder: path.join(__dirname, "dist") }),
  ],
};

Check the example in the example folder.

Credits:

Keywords