UNPKG

247 BJavaScriptView Raw
1#!/usr/bin/env node
2
3import createReporter from './index';
4
5const reporter = createReporter();
6
7process.stdin
8 .pipe(reporter)
9 .pipe(process.stdout);
10
11process.on('exit', status => {
12 if (status === 1 || reporter.isFailed) process.exit(1);
13});