1.0.1 • Published 5 years ago

check-dependencies-webpack-plugin v1.0.1

Weekly downloads
9
License
MIT
Repository
github
Last release
5 years ago

check-dependencies-webpack-plugin

Webpack plugin that checks that the correct versions of your package's dependencies are installed.

Sample webpack config:

// webpack.config.js

const CheckDependenciesWebpackPlugin = require("check-dependencies-webpack-plugin");

module.exports = {
	// Use the plugin.
	plugins: [
		new CheckDependenciesWebpackPlugin()
	]

	// Other webpack config...
};

TODO: