Skip to content

Commit 03c812a

Browse files
committed
remove annoying space
1 parent 228f86e commit 03c812a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/formatOutput.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module.exports = function(stats, options) {
3636
});
3737
Object.keys(stats.fileSizes).forEach(function(file) {
3838
var name = fileChunkNames[file] && fileChunkNames[file].join(" ") || "";
39-
var fileLine = sprintf("%" + maxLenChunkname + "s", name) + c("\033[1m") + sprintf("%" + (3 + maxLenFilename) + "s", file) + c("\033[22m")+": "+c("\033[1m") + sprintf("%8d", stats.fileSizes[file]) + c("\033[22m") + " chars/bytes ";
39+
var fileLine = sprintf("%" + maxLenChunkname + "s", name) + c("\033[1m") + sprintf("%" + (3 + maxLenFilename) + "s", file) + c("\033[22m")+": "+c("\033[1m") + sprintf("%8d", stats.fileSizes[file]) + c("\033[22m") + " chars/bytes";
4040
buf.push(fileLine);
4141
});
4242
}

0 commit comments

Comments
 (0)