bitbar-webpack-progress-plugin

1.0.0 • Public • Published

Bitbar Webpack Progress Plugin

Display webpack build progress in macOS Menu Bar.

Install Webpack Plugin

npm install --save-dev bitbar-webpack-progress-plugin

Install Bitbar Plugin

Usage

const BitBarWebpackProgressPlugin = require("bitbar-webpack-progress-plugin");
const path = require("path");
 
module.exports = {
  mode: "development",
  entry: {
    main: "./app/main"
  },
  output: {
    filename: "[name].js",
    path: path.join(__dirname, "dist", "js")
  },
  devtool: "source-map",
  module: {
    rules: [
      { test: /\.js$/, loader: 'babel-loader', exclude: /node_modules/ },
      { test: /\.css$/, use: ['style-loader', 'css-loader'] }
    ]
  },
  plugins: [new BitBarWebpackProgressPlugin()]
};

Readme

Keywords

none

Package Sidebar

Install

npm i bitbar-webpack-progress-plugin

Weekly Downloads

296

Version

1.0.0

License

none

Unpacked Size

24.1 kB

Total Files

12

Last publish

Collaborators

  • wearetherock