Skip to content

Commit 3f2bcb4

Browse files
authored
fix: output profit in red if file size increased (#1162)
1 parent 4d15ef2 commit 3f2bcb4

File tree

1 file changed

+23
-14
lines changed

1 file changed

+23
-14
lines changed

lib/svgo/coa.js

+23-14
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ const regSVGFile = /\.svg$/i;
1212

1313
/**
1414
* Synchronously check if path is a directory. Tolerant to errors like ENOENT.
15+
*
1516
* @param {string} path
1617
*/
1718
function checkIsDir(path) {
@@ -276,6 +277,7 @@ async function action(args, opts, command) {
276277

277278
/**
278279
* Optimize SVG files in a directory.
280+
*
279281
* @param {Object} config options
280282
* @param {string} dir input directory
281283
* @param {string} output output directory
@@ -292,6 +294,7 @@ function optimizeFolder(config, dir, output) {
292294

293295
/**
294296
* Process given files, take only SVG.
297+
*
295298
* @param {Object} config options
296299
* @param {string} dir input directory
297300
* @param {Array} files list of file names in the directory
@@ -318,7 +321,8 @@ function processDirectory(config, dir, files, output) {
318321
}
319322

320323
/**
321-
* Get svg files descriptions
324+
* Get SVG files descriptions.
325+
*
322326
* @param {Object} config options
323327
* @param {string} dir input directory
324328
* @param {Array} files list of file names in the directory
@@ -360,6 +364,7 @@ function getFilesDescriptions(config, dir, files, output) {
360364

361365
/**
362366
* Read SVG file and pass to processing.
367+
*
363368
* @param {Object} config options
364369
* @param {string} file
365370
* @param {string} output
@@ -375,6 +380,7 @@ function optimizeFile(config, file, output) {
375380

376381
/**
377382
* Optimize SVG data.
383+
*
378384
* @param {Object} config options
379385
* @param {string} data SVG content to optimize
380386
* @param {string} output where to write optimized file
@@ -425,6 +431,7 @@ function processSVGData(config, info, data, output, input) {
425431

426432
/**
427433
* Write result of an optimization.
434+
*
428435
* @param {string} input
429436
* @param {string} output output file name. '-' for stdout
430437
* @param {string} data data to write
@@ -444,34 +451,37 @@ function writeOutput(input, output, data) {
444451
}
445452

446453
/**
447-
* Write a time taken by optimization.
454+
* Write time taken to optimize.
455+
*
448456
* @param {number} time time in milliseconds.
449457
*/
450458
function printTimeInfo(time) {
451459
console.log(`Done in ${time} ms!`);
452460
}
453461

454462
/**
455-
* Write optimizing information in human readable format.
463+
* Write optimizing stats in a human-readable format.
464+
*
456465
* @param {number} inBytes size before optimization.
457466
* @param {number} outBytes size after optimization.
458467
*/
459468
function printProfitInfo(inBytes, outBytes) {
460-
var profitPercents = 100 - (outBytes * 100) / inBytes;
469+
const profitPercent = 100 - (outBytes * 100) / inBytes;
470+
/** @type {[string, Function]} */
471+
const ui = profitPercent < 0 ? ['+', colors.red] : ['-', colors.green];
461472

462473
console.log(
463-
Math.round((inBytes / 1024) * 1000) / 1000 +
464-
' KiB' +
465-
(profitPercents < 0 ? ' + ' : ' - ') +
466-
colors.green(Math.abs(Math.round(profitPercents * 10) / 10) + '%') +
467-
' = ' +
468-
Math.round((outBytes / 1024) * 1000) / 1000 +
469-
' KiB'
474+
Math.round((inBytes / 1024) * 1000) / 1000 + ' KiB',
475+
ui[0],
476+
ui[1](Math.abs(Math.round(profitPercent * 10) / 10) + '%'),
477+
'=',
478+
Math.round((outBytes / 1024) * 1000) / 1000 + ' KiB'
470479
);
471480
}
472481

473482
/**
474483
* Check for errors, if it's a dir optimize the dir.
484+
*
475485
* @param {Object} config
476486
* @param {string} input
477487
* @param {string} output
@@ -491,6 +501,7 @@ function checkOptimizeFileError(config, input, output, error) {
491501

492502
/**
493503
* Check for saving file error. If the output is a dir, then write file there.
504+
*
494505
* @param {string} input
495506
* @param {string} output
496507
* @param {string} data
@@ -509,9 +520,7 @@ function checkWriteFileError(input, output, data, error) {
509520
}
510521
}
511522

512-
/**
513-
* Show list of available plugins with short description.
514-
*/
523+
/** Show list of available plugins with short description. */
515524
function showAvailablePlugins() {
516525
const list = builtin
517526
.sort((a, b) => a.name.localeCompare(b.name))

0 commit comments

Comments
 (0)