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 a793734 commit d5cb921Copy full SHA for d5cb921
tasks/stats.js
@@ -150,7 +150,7 @@ function makeBundleInfo(pathObj) {
150
'',
151
'| Raw size | Minified size | Minified + gzip size |',
152
'|------|-----------------|------------------------|',
153
- '| ' + sizes.raw + ' | ' + sizes.minified + ' | ' + sizes.gzipped + ' | ',
+ '| ' + sizes.raw + ' | ' + sizes.minified + ' | ' + sizes.gzipped + ' |',
154
''
155
].join('\n');
156
}
@@ -205,7 +205,7 @@ function formatBundleInfo(bundleName, moduleList) {
205
var len = moduleList.length,
206
ending;
207
208
- if(i === len - 2) ending = 'and';
+ if(i === len - 2) ending = ' and';
209
else if(i < len - 1) ending = ',';
210
else ending = '';
211
0 commit comments