cli-progress-webpack-plugin
A cli progress bar for Webpack.
Installation
$ npm install cli-progress-webpack-plugin --save-dev
Usage
First, import the plugin into your Webpack configuration file:
const ProgressPlugin = require('cli-progress-webpack-plugin');
Then, instantiate it within the list of plugins:
{
plugins: [
new ProgressPlugin(),
// new ProgressPlugin({
// ...options
// profileLevel: 'info',
// progress: {},
// })
]
}
Options
profileLevel(profileLevel = 'info') log level ('verbose'/'log'/'info'/'warn'/'error'/'none')progresspasscli-simple-progressoptions...restpassprogress-pluginoptions
