0.3.0 • Published 7 years ago

start-pretty-reporter v0.3.0

Weekly downloads
53
License
MIT
Repository
github
Last release
7 years ago

start-pretty-reporter

npm linux build windows build coverage deps

Pretty reporter for Start.

  • colors
  • decamelized task names
  • short relative paths
  • clean stack traces

screenshot

Install

npm install --save-dev start-pretty-reporter
# or
yarn add --dev start-pretty-reporter

Usage

import start from 'start';
import reporter from 'start-pretty-reporter';
import files from 'start-files';
import clean from 'start-clean';
import read from 'start-read';
import babel from 'start-babel';
import write from 'start-write';

export const build = () => start(reporter())(
  files('build/'),
  clean(),
  files('lib/**/*.js'),
  read(),
  babel(),
  write('build/')
);

See documentation for details.

Arguments

reporter(options)

  • options – reporter options, { mute: [] } by default
    • mute – array of task names to mute any output from