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 228f86e commit 03c812aCopy full SHA for 03c812a
lib/formatOutput.js
@@ -36,7 +36,7 @@ module.exports = function(stats, options) {
36
});
37
Object.keys(stats.fileSizes).forEach(function(file) {
38
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 ";
+ 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";
40
buf.push(fileLine);
41
42
}
0 commit comments