deepsea ca9f471156 first commit | il y a 1 an | |
---|---|---|
.. | ||
test | il y a 1 an | |
.editorconfig | il y a 1 an | |
.eslintrc | il y a 1 an | |
.travis.yml | il y a 1 an | |
README.md | il y a 1 an | |
index.js | il y a 1 an | |
package.json | il y a 1 an |
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)
]
}