1.0.1 • Published 4 years ago

@dvpnt/webpack-chunks-stats-plugin v1.0.1

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

@dvpnt/webpack-chunks-stats-plugin

Build Status NPM Version

This plugin save transformed webpack stats.chunks object as a json file.

Installation

$ npm install --save-dev @dvpnt/webpack-chunks-stats-plugin
# or
$ yarn add --dev @dvpnt/webpack-chunks-stats-plugin

Example

const ChunksStatsPlugin = require('@dvpnt/webpack-chunks-stats-plugin');

module.exports = {
	plugins: [
		new ChunksStatsPlugin({
			filename: 'stats.json'
		})
	]
};

License

The MIT License (MIT)