GitXplorerGitXplorer
e

webpack-nicelog

public
13 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
a44aeea0c0632b930d7199ddc6865cda8d107a09

feat: allow skipping build time message

eendiliey committed 6 years ago
Unverified
d0d7321e0ee6ac2e4b6d5143524dadba3fa4f262

fix: remove env presets

eendiliey committed 6 years ago
Unverified
5ddd7eb1b43b00659696d78a30d850f9717869f6

v2.2.0

eendiliey committed 6 years ago
Unverified
c52160e8dcfcce247c49bb08f944d44aed569dd7

chore: add babel to transpile & minify

eendiliey committed 6 years ago
Unverified
28b0746b1e708038032bd934ef03b14d3f5b5e17

chore: update preview

eendiliey committed 6 years ago
Unverified
6a869901052c24a4d18f27a33afb8962cc02cea0

v2.1.0

eendiliey committed 6 years ago

README

The README file for this repository.

Webpack-NiceLog

preview GIF

Install

$ npm install webpack-nicelog --save-dev

Example Usage

// webpack.config.js
const WebpackNiceLog = require('webpack-nicelog');

module.exports = {
  // ...
  plugins: [
    new WebpackNiceLog()
  ]
}

API

WebpackNiceLog(options)

Options

name

  • Default: webpack

Display name

skipBuildTime

  • Default: false

Do not show build time e.g: Build finished in 1234 ms

clearScreen

  • Default: false

Clear screen after every compilation.

color

  • Default: green

Display color (can be HEX like #xxyyzz or a web color like green).

stream

  • Default: process.stderr

Output stream.

minimal

  • Default: Auto enabled on CI, non-TTY and test environments

Hide progress bar and only show Compiling/Compiled messages.

onDone

  • Type: Function(stats)

A function that will be called when all builds are finished (no errors).

License

MIT © Endilie Yacop Sucipto