A reporter library for the webpack-sane-compiler that provides pretty, customizable console output for webpack compilation events (start, success, failure, invalidate, stats). Version 3.3.2 is the latest stable release. It is designed specifically for webpack-sane-compiler (peer dependency >=2.0.0 <4.0.0) and offers hooks to customize each message type, with defaults that print to stderr. Unlike generic webpack reporters, it integrates tightly with the sane compiler API, supporting features like stats display (true, false, 'once') and fine-grained event-level formatting.
npm install webpack-sane-compiler-reporterNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to create a SaneCompiler instance, attach the reporter with custom options, and run a compilation.
Update code to destructure stop and options from the return value.
Replace verbose: true with stats: 'once' or stats: true.
Refer to latest documentation; if not confirmed, use the object-style customization.
Specify write: (msg) => process.stdout.write(msg) to redirect to stdout.
Use import startReporting from 'webpack-sane-compiler-reporter' or const startReporting = require('...')Install the peer dependency: npm install webpack-sane-compiler
Set stats to true, false, or 'once'.