Registry / devops / simple-build-report-webpack-plugin

simple-build-report-webpack-plugin

JSON →
library1.0.2jsnpmunverified

Webpack plugin (v1.0.2) that simplifies console output by bundling FileSizeReport and formatWebpackMessages from react-dev-utils. It replaces verbose Webpack stats with a concise, human-readable summary showing build status, asset sizes (gzipped), and compilation time. Last updated in 2022, no active development. Differentiators: zero-config, single plugin, no options, works with Webpack 5. Lightweight alternative to custom stats configurations or other reporting plugins.

npm install simple-build-report-webpack-plugin
INSTALL
IMPORT
SIG · SIMPLE-BUILD-REPOR
S
simple-build-report-webpack-plugin
devopsjavascriptv1.0.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

SimpleBuildReportPlugin
const SimpleBuildReportPlugin = require('simple-build-report-webpack-plugin');
import SimpleBuildReportPlugin from 'simple-build-report-webpack-plugin';
Package is CJS-only; no ESM export. Use require() in CommonJS environments.
SimpleBuildReportPlugin
new SimpleBuildReportPlugin()
new SimpleBuildReportPlugin({})
Plugin accepts no options. Passing an empty object may cause unexpected behavior in some webpack versions.

Shows how to install and configure the plugin in a Webpack configuration file using CommonJS require().

// webpack.config.js const SimpleBuildReportPlugin = require('simple-build-report-webpack-plugin'); module.exports = { // ... other webpack config plugins: [ new SimpleBuildReportPlugin(), ], };
Debug
Known issues
gotchaPlugin does not support options; any passed options are silently ignored.
fix
Remove any options object when instantiating the plugin.
affects: all
deprecatedPackage has not been updated since 2022 and may not work with future Webpack versions beyond 5.
fix
Consider alternatives like webpack-dashboard, friendly-errors-webpack-plugin, or custom stats configuration.
affects: >=1.0.2
Errors
Common errors & fixes
TypeError: SimpleBuildReportPlugin is not a constructor
Using ES module import syntax with a CJS-only package.
fix
Use require() instead of import.
Upgrade
Version history
1.0.2latest on npm
Audit
Dependencies
webpackrequiredpeer dependency; plugin is designed for Webpack 5
Agent activity
8 hits · last 30 days
node
8
Resources
simple-build-report-webpack-plugin — npm install simple-build-report-webpack-plugin · libregistry