Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/abhisaha1/webpack-stats-progress
- Owner: abhisaha1
- License: mit
- Created: 2020-05-22T07:50:57.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T06:39:09.000Z (almost 2 years ago)
- Last Synced: 2024-04-27T19:03:05.026Z (8 months ago)
- Language: TypeScript
- Size: 1.56 MB
- Stars: 6
- Watchers: 1
- Forks: 3
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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: