Skip to content

Commit 80f7ac2

Browse files
author
Pooya Parsa
committed
fix: fix compiled message in minimal mode
1 parent 1c9523e commit 80f7ac2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export default class WebpackBarPlugin extends webpack.ProgressPlugin {
9393
const time = process.hrtime(this.state.start);
9494
if (this.options.minimal) {
9595
this.options.stream.write(
96-
`Compiled ${this.options.name} in ${prettyTime(this.state.time)}\n`
96+
`Compiled ${this.options.name} in ${prettyTime(time)}\n`
9797
);
9898
} else {
9999
this.logUpdate.clear();

0 commit comments

Comments
 (0)