duplicate-dependencies-webpack-plugin
v1.0.2
Published
webpack plugin to find duplicated dependencies from your bundle
Downloads
4,904
Readme
duplicate-dependencies-webpack-plugin
A webpack plugin to find all duplicated dependencies in your bundle
Installation
For yarn users
yarn add duplicate-dependencies-webpack-plugin --dev
For npm users
npm i duplicate-dependencies-webpack-plugin -D
Basic Usage
webpack.config.js
const { DuplicateReporterPlugin } = require( 'duplicate-dependencies-webpack-plugin' )
module.exports = {
plugins: {
new DuplicateReporterPlugin()
}
}
Advanced Usage
This plugin is designed to be more flexible
So you may want to use it together with a reporter plugin
Internally this plugin expose a hook called result
webpack.config.js
const DuplicatePlugin = require( 'duplicate-dependencies-webpack-plugin' )
const ID = 'duplicates-reporter'
class DuplicatesReporterPlugin {
apply( compiler ) {
compiler.hooks.compilation.tap( ID, compilation => {
DuplicatePlugin.getHooks( compilation ).result
.tap( ID, duplicates => {
// here you get the `duplicates` data
// do whatever you want with this
useCustomPrettyReporter( duplicates )
} )
} )
}
}
module.exports = {
plugins: {
new DuplicatePlugin(),
new DuplicatesReporterPlugin()
}
}
duplicates looks like:
{
'package_name': [
{
name: 'package_name',
version: '4.2.2',
root: 'absolute_path_to_package_root',
issuer: 'absolute_path_to_issuer', // the file issue the request
files: [Array], // files in this package which are included in your bundle
bytes: 4000 // bytes contributed by this packages
},
// ...more versions
]
}
License
MIT