Skip to content

Commit d5cb921

Browse files
committed
tasks: a few stats.js fixups
1 parent a793734 commit d5cb921

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tasks/stats.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ function makeBundleInfo(pathObj) {
150150
'',
151151
'| Raw size | Minified size | Minified + gzip size |',
152152
'|------|-----------------|------------------------|',
153-
'| ' + sizes.raw + ' | ' + sizes.minified + ' | ' + sizes.gzipped + ' | ',
153+
'| ' + sizes.raw + ' | ' + sizes.minified + ' | ' + sizes.gzipped + ' |',
154154
''
155155
].join('\n');
156156
}
@@ -205,7 +205,7 @@ function formatBundleInfo(bundleName, moduleList) {
205205
var len = moduleList.length,
206206
ending;
207207

208-
if(i === len - 2) ending = 'and';
208+
if(i === len - 2) ending = ' and';
209209
else if(i < len - 1) ending = ',';
210210
else ending = '';
211211

0 commit comments

Comments
 (0)