Releases: smikula/webpack-bundle-diff
Releases · smikula/webpack-bundle-diff
v1.2.4
- Fixes parent module derivation when using Compilation stats (#79)
- Fixes directParents and lazyParents when merging module graph nodes (#80)
v1.2.3
- Fixes regression related to scope hoisted modules (#76)
v1.2.2
- Fixes regression where module parents were not getting populated in the module graph (#74)
v1.2.1
- Fixes regression with 'module.parents' when using Compilation stats (#72)
v1.2.0
- Adds option to support stats generated from multiple configs (#68)
- Adds functionality to generate bundle stats using the
Compilation
object (#70)
v1.1.0
- Fixes a bug where some child->parent edges were missed (#44)
- Adds two new fields on
ModuleGraphNode
, directParents
(corresponding to normal imports) and lazyParents
(corresponding to dynamic imports). These can be useful for analyzing the module graph.
v0.6.0
- Fixes a bug where some child->parent edges were missed (#44)
- Adds two new fields on
ModuleGraphNode
, directParents
(corresponding to normal imports) and lazyParents
(corresponding to dynamic imports). These can be useful for analyzing the module graph.
v1.0.0
This release updates webpack-bundle-diff
to work with Webpack v5. (#40) This is a breaking change; this package is no longer compatible with Webpack v4. (For older versions of Webpack you can continue to use v0.x.x.)
v0.5.2
- Change the hidden threshold to be configurable (#27)
- Update various dependencies (#24, #29)
v0.5.1
- Expose the
Stats
types (#25)