Skip to content

Commit

Permalink
fix: minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Nov 4, 2018
1 parent 150699d commit d7a10c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/plugin.js
Expand Up @@ -5,7 +5,6 @@ import prettyTime from 'pretty-time';
import * as reporters from './reporters'; // eslint-disable-line import/no-namespace
import { startCase } from './utils';
import { parseRequest } from './utils/request';
import { consola } from './utils/cli';

// Use bars when possible as default
const isMinimal = env.ci || env.test || !env.tty;
Expand Down
4 changes: 2 additions & 2 deletions src/reporters/stats.js
Expand Up @@ -3,7 +3,7 @@ export default class StatsReporter {
this.options = options;
}

done(context, { stats }) {
process.stderr.write('\n' + stats.toString() + '\n');
done(_, { stats }) {
process.stderr.write('\n' + stats.toString(this.options) + '\n');
}
}

0 comments on commit d7a10c9

Please sign in to comment.