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