Pretty reporter for Start.
- colors
- decamelized task names
- short relative paths
- clean stack traces
npm install --save-dev start-pretty-reporter
# or
yarn add --dev start-pretty-reporter
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.
reporter(options)
options
– reporter options,{ mute: [] }
by defaultmute
– array of task names to mute any output from