Use @domenic/eslint-config

This commit is contained in:
Domenic Denicola 2021-02-15 21:10:20 -05:00
commit 360f108c1c
8 changed files with 373 additions and 572 deletions

View file

@ -34,8 +34,8 @@ module.exports = async (cachePath, manifestPath, contentPath, book, concurrentJo
warnings.push(...await pool.exec("convertChapter", [chapter, book, inputPath, outputPath]));
const time = String(Math.round((performance.now() - start) / 1000)).padStart(3) + " s";
progress.increment({ time });
const seconds = String(Math.round((performance.now() - start) / 1000)).padStart(3);
progress.increment({ time: `${seconds} s` });
}));
pool.terminate();