version-mismatch-webpack-plugin
v0.0.1
Published
Checks for differences between the installed versions of dependencies and the versions specified in package.json
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-pluginyarn add -D version-mismatch-webpack-pluginUsage
webpack.config.js
const VersionMismatchWebpackPlugin = require('version-mismatch-webpack-plugin')
module.exports = {
// ...
plugins: [
new VersionMismatchWebpackPlugin()
]
};