0.0.1 • Published 6 years ago

version-mismatch-webpack-plugin v0.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

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()
	]
};