Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/abhisaha1/webpack-stats-progress

A webpack plugin to get progess of build and provide better stats of output files
https://github.com/abhisaha1/webpack-stats-progress

Last synced: 4 days ago
JSON representation

A webpack plugin to get progess of build and provide better stats of output files

Awesome Lists containing this project

README

        

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

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

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

Check the example in the `example` folder.

### Credits:

- React Create App
- Node Progress