Skip to content

wk-j/vscode-webpack-progress

Repository files navigation

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()
  ]
};