0.1.4 • Published 4 years ago

version-list-webpack-plugin v0.1.4

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

version-list-webpack-plugin

Sometimes you want to know project dependencies exact versions on production environment.

Install

npm install --save-dev version-list-webpack-plugin

Usage

webpackConfig
var VersionListWebpackPlugin = require('version-list-webpack-plugin');

var webpackConfig = {
    plugins: [
        new VersionListWebpackPlugin({
            showDevDependencies: false,
            showDependencies: true,
        })
    ]
}
chainWebpack
const VersionListWebpackPlugin = require('version-list-webpack-plugin');

...
chainWebpack:config=>{
    	config.plugin("VersionListWebpackPlugin").use(VersionListWebpackPlugin, [
			{ showDevDependencies: true, showDependencies: true }
		]);
}
...

Feature

Plugin will collect dependencies version list and output version.json in the webpack bundle path

1.0.0

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.0

4 years ago