1.1.0 • Published 7 years ago
webpack-fancy-log v1.1.0
Webpack fancy log
A webpack plugin that enables compact fancy logging for development
npm i webpack-fancy-log
const WebpackFancyLog = require('webpack-fancy-log')
new WebpackFancyLog({
// The name that will be used for logging:
// - If falsy, no name will be displayed.
// - By default, no name is used.
name: 'example',
// The output:
// - If this is a tty stream, it
// will display a nice progress bar.
// - Default is process.stdout
output: process.stdout,
// True, to output time:
// - Default is false.
time: false
})