We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 150699d commit d7a10c9Copy full SHA for d7a10c9
src/plugin.js
@@ -5,7 +5,6 @@ import prettyTime from 'pretty-time';
5
import * as reporters from './reporters'; // eslint-disable-line import/no-namespace
6
import { startCase } from './utils';
7
import { parseRequest } from './utils/request';
8
-import { consola } from './utils/cli';
9
10
// Use bars when possible as default
11
const isMinimal = env.ci || env.test || !env.tty;
src/reporters/stats.js
@@ -3,7 +3,7 @@ export default class StatsReporter {
3
this.options = options;
4
}
- done(context, { stats }) {
- process.stderr.write('\n' + stats.toString() + '\n');
+ done(_, { stats }) {
+ process.stderr.write('\n' + stats.toString(this.options) + '\n');
0 commit comments