Skip to content

Commit 93089d1

Browse files
Fix output typo
Fix a typo in the output
1 parent 3f12ea2 commit 93089d1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

output.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ module.exports.getHumanOutput = outputObj => {
4343
b(humanTime(loaderObj.activeTime), loaderObj.activeTime);
4444
output += "\n";
4545
output +=
46-
" mean = " + humanTime(loaderObj.averages.median) + ",\n";
46+
" median = " + humanTime(loaderObj.averages.median) + ",\n";
4747
output +=
48-
" median = " + humanTime(loaderObj.averages.mean) + ",\n";
48+
" mean = " + humanTime(loaderObj.averages.mean) + ",\n";
4949
if (typeof loaderObj.averages.variance === "number")
5050
output +=
5151
" s.d = " +

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "speed-measure-webpack-plugin",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "A Webpack plugin, to help measure the speed of your other loaders and plugins",
55
"main": "index.js",
66
"repository": {

0 commit comments

Comments
 (0)