1.0.0 • Published 6 years ago

bitbar-webpack-progress-plugin v1.0.0

Weekly downloads
919
License
-
Repository
-
Last release
6 years ago

Bitbar Webpack Progress Plugin

Display webpack build progress in macOS Menu Bar.

npm.io

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

6 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago