1.0.0 • Published 1 year ago

webpack-count-files-by-extensions-plugin v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Webpack Extension Count Plugin

A plugin for Webpack that outputs the number of collected files by extensions.

Installation

npm i webpack-count-files-by-extensions-plugin

Usage

  1. In the file webpack.config.js of your project connect the plugin and add it to the plugins array:
const CountFilesByExtensionsPlugin = require('webpack-count-files-by-extensions-plugin');

module.exports = {
  // ...
  plugins: [
    // ...
    new CountFilesByExtensionsPlugin(),
  ],
};