A stylish, opinionated reporter for webpack that replaces the default build output with a visually appealing, easy-to-read format. Version 0.1.8 supports webpack 2, 3, and 4. It ignores the stats config and works best with a single instance for MultiCompiler setups. Requires Node >=6. No options; opinionated defaults. Compared to alternatives like webpack-dashboard or friendly-errors-webpack-plugin, it focuses purely on output aesthetics with minimal configuration.
npm install webpack-stylishVerified import paths — ran on the pinned version, not inferred.
Basic webpack config with webpack-stylish plugin replacing default stats output.
Do not set `stats` in webpack config; if using webpack-cli, set `stats: 'none'` to avoid duplicate output.
Upgrade to a webpack 5 compatible alternative or stick with webpack 4.
Use a single shared instance for MultiCompiler; otherwise duplicate output.
Upgrade Node.js to >=6.
Run `npm install webpack-stylish --save-dev` and ensure require path matches.
Use `const Stylish = require('webpack-stylish');` instead of `import`.Add `stats: 'none'` to config, and share a single Stylish instance across all compiler configs.