mirror of
https://github.com/simple-icons/simple-icons.git
synced 2024-11-16 00:59:07 +02:00
38 lines
924 B
JavaScript
38 lines
924 B
JavaScript
#!/usr/bin/env node
|
|
/**
|
|
* @file
|
|
* Clean files built by the build process.
|
|
*/
|
|
|
|
import fs from 'node:fs/promises';
|
|
import path from 'node:path';
|
|
import process from 'node:process';
|
|
import {getDirnameFromImportMeta} from '../../sdk.mjs';
|
|
|
|
const __dirname = getDirnameFromImportMeta(import.meta.url);
|
|
const rootDirectory = path.resolve(__dirname, '..', '..');
|
|
const files = ['index.js', 'index.mjs', 'index.d.ts', 'sdk.js'];
|
|
|
|
const fileExists = (fpath) =>
|
|
fs
|
|
.access(fpath, fs.constants.F_OK)
|
|
.then(() => true)
|
|
.catch(() => false);
|
|
|
|
try {
|
|
Promise.all(
|
|
files.map(async (file) => {
|
|
const filepath = path.join(rootDirectory, file);
|
|
if (!(await fileExists(filepath))) {
|
|
console.error(`File ${file} does not exist, skipping...`);
|
|
return;
|
|
}
|
|
|
|
return fs.unlink(filepath);
|
|
}),
|
|
);
|
|
} catch (error) {
|
|
console.error('Error cleaning files:', error);
|
|
process.exit(1);
|
|
}
|