|
|
3 months ago | |
|---|---|---|
| .. | ||
| node_modules | 3 months ago | |
| test | 3 months ago | |
| .editorconfig | 3 months ago | |
| .eslintrc | 3 months ago | |
| .travis.yml | 3 months ago | |
| README.md | 3 months ago | |
| index.js | 3 months ago | |
| package.json | 3 months ago | |
inspired by progress-bar-webpack-plugin,simple Webpack plugin that display nice progress when build
npm install progress-webpack-plugin --save--dev
add plugin in your webpack.config.js
var ProgressPlugin = require('progress-webpack-plugin')
module.exports = {
...
plugins:[
new ProgressPlugin(true)
]
}