0.0.5 • Published 8 years ago

webpack-bundle-report v0.0.5

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

webpack-bundle-report

Reporting tool to analyse Webpack bundles

Installation:

npm i -g webpack-bundle-report

Usage from JS:

var webpackBundleReport = require('webpack-bundle-report'),
    webpackConfigurationPath = path.resolve('webpack.config.js'),
    webpackConfiguration = require(webpackConfigurationPath);

webpackBundleReport(webpackConfiguration, function (error, report) {
    if (error) {
        throw new Error(error);
    }

    console.log(report);
});

Usage from CLI:

wbr webpack.config.js > report.txt

wbr [--stats|-s] stats.json > report.txt
0.0.5

8 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago