Skip to content
This repository was archived by the owner on Jun 18, 2019. It is now read-only.

Changelog

Marat Dreizin edited this page Feb 8, 2017 · 4 revisions

Change Log

v3.0.0

Now it is just a tool which uses webpack API as is without any overhead and as before it compiles configs in parallel.

A lot of dependencies were removed in favour of simplicity and testability:

  • glob2base
  • messageformat
  • observatory
  • pretty-error
  • pretty-hrtime
  • stats-writer-webpack-plugin
  • webpack-config
  • etc

v1.0.0

  • Renamed webpack-glob to webpack-cluster
  • Added multiple pattern support for run and watch methods:
import WebpackCluster from 'webpack-cluster';

const webpack = new WebpackCluster();

webpack.run(['./src/**/webpack.config.js']).then((err, stats) => {});
webpack-cluster --config **/webpack.1.config.js --config **/webpack.2.config.js
  • Added nifty progress
  • Added maxWorkers to set number of concurrent workers

Clone this wiki locally