GitXplorerGitXplorer
e

webpack-nicelog

public
13 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
3584778c62da3be2ebbbf5df9caf9a587c31381e

feat: add clearScreen option

eendiliey committed 6 years ago
Unverified
c7c6cdcd62e8475c42a7a092491702cb51bf1137

v2.0.0

eendiliey committed 6 years ago
Unverified
67508f71eea01ac9a8bf846baaa0e18756d0f427

feat: major update with progressbar & api change

eendiliey committed 6 years ago
Unverified
56270969ecdafe4c774f156f9fb40a1ac9fee8e3

v1.1.0

eendiliey committed 6 years ago
Unverified
035335d7248e4717e4d04c55047ac569bf0ac506

chore: add release script

eendiliey committed 6 years ago
Unverified
9b19a3c14bb08e735649fe7fcf26d788e8642c7f

feat: compile message customizability

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