webpack-stats-diff

1.3.0 • Public • Published

webpack-stats-diff

A command-line tool to report changes in bundle sizes across builds.

The problem

You just made changes to your webpack config or your source files and you want to know how bundle sizes were impacted.

The solution

Use this tool to see how much the total built file size has changed and see the breakdown for what files were added or removed as well as what files increased or decreased in size.

Installation & Usage

Install with npm install -g webpack-stats-diff

To compare your bundle sizes before and after, you'll need to configure webpack to save a stats file. This can be done by either adding a script to your package.json similar to build_stats: webpack mode=production --json > stats.json or by adding webpack-stats-plugin into your plugins list.

For example, to compare the bundle sizes between branches, you could save the master build stats to a file master.json and the branch build stats to my-branch.json and run

webpack-stats-diff master.json my-branch.json

terminal showing the result of running the command

Other Solutions

  • webpack-compare instead generates an HTML file to display the comparison, but it doesn't include totals or filtering options.

Readme

Keywords

Package Sidebar

Install

npm i webpack-stats-diff

Weekly Downloads

15,868

Version

1.3.0

License

MIT

Unpacked Size

255 kB

Total Files

15

Last publish

Collaborators

  • zachgawlik