darrenscerri / duplicate-package-checker-webpack-plugin

🕵️ Webpack plugin that warns you when a build contains multiple versions of the same package
MIT License
707 stars 29 forks source link

Add exclude option (#11) #13

Closed ArgonAlex closed 6 years ago

ArgonAlex commented 6 years ago

Fixes #11.

I made the function per instance instead of per package. Per package is more powerful because you can directly compare multiple instances of package with each other, but it results in a more complicated API and I couldn't think of an actual use case for it.

darrenscerri commented 6 years ago

Thanks for the PR @ArgonAlex 🎉 !