webpack-progress
v0.0.8
Published
Display Webpack build progress in VS Code Status Bar
Downloads
3
Readme
Webpack Progress
Display Webpack build progress in VS Code Status Bar.
Installation
- Command + P
- Type:
ext install webpack-progress
- Press Enter
webpack.config.js
You have to install bitbar-webpack-progress-plugin
var BitBarWebpackProgressPlugin = require("bitbar-webpack-progress-plugin");
module.exports = {
...
plugins: [
new BitBarWebpackProgressPlugin()
]
};