Refactor generate-svg.js (#29348)

Small refactor to avoid `process` global and to sync it with
`generate-images`.
This commit is contained in:
silverwind 2024-02-23 23:07:27 +01:00 committed by GitHub
parent 53c7d8908e
commit 08c1926e1c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 4 deletions

View File

@ -4,15 +4,16 @@ import {optimize} from 'svgo';
import {parse} from 'node:path'; import {parse} from 'node:path';
import {readFile, writeFile, mkdir} from 'node:fs/promises'; import {readFile, writeFile, mkdir} from 'node:fs/promises';
import {fileURLToPath} from 'node:url'; import {fileURLToPath} from 'node:url';
import {exit} from 'node:process';
const glob = (pattern) => fastGlob.sync(pattern, { const glob = (pattern) => fastGlob.sync(pattern, {
cwd: fileURLToPath(new URL('..', import.meta.url)), cwd: fileURLToPath(new URL('..', import.meta.url)),
absolute: true, absolute: true,
}); });
function exit(err) { function doExit(err) {
if (err) console.error(err); if (err) console.error(err);
process.exit(err ? 1 : 0); exit(err ? 1 : 0);
} }
async function processFile(file, {prefix, fullName} = {}) { async function processFile(file, {prefix, fullName} = {}) {
@ -64,7 +65,7 @@ async function main() {
} }
try { try {
exit(await main()); doExit(await main());
} catch (err) { } catch (err) {
exit(err); doExit(err);
} }