version-mismatch-webpack-plugin
v0.0.1
Published
Checks for differences between the installed versions of dependencies and the versions specified in package.json
Downloads
3
Maintainers
Readme
Version Mismatch Webpack Plugin
Checks for differences between the installed versions of dependencies and the versions specified in package.json
Install
npm i -D version-mismatch-webpack-plugin
yarn add -D version-mismatch-webpack-plugin
Usage
webpack.config.js
const VersionMismatchWebpackPlugin = require('version-mismatch-webpack-plugin')
module.exports = {
// ...
plugins: [
new VersionMismatchWebpackPlugin()
]
};