Skip to content
This repository has been archived by the owner on Aug 19, 2019. It is now read-only.

start-runner/pretty-reporter

Repository files navigation

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