1.0.0 • Published 3 years ago
webpack-count-files-by-extensions-plugin v1.0.0
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-pluginUsage
- In the file
webpack.config.jsof your project connect the plugin and add it to thepluginsarray:
const CountFilesByExtensionsPlugin = require('webpack-count-files-by-extensions-plugin');
module.exports = {
// ...
plugins: [
// ...
new CountFilesByExtensionsPlugin(),
],
};1.0.0
3 years ago