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