mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-15 21:47:43 +01:00
* Adjust typescript types * adjust types * fix types in all helper files * Fix types * Migrate js files to ts files * Refactor to TS files * Rename extentions * Adjust imports * Fix builds * Update lockfile * Fix last typescript migration * Fix entry path @lucide/outline-svg * Fix types * add checkout step * format files * Format files
29 lines
813 B
TypeScript
29 lines
813 B
TypeScript
import { writeFile } from 'fs/promises';
|
|
import { existsSync, unlinkSync, mkdirSync } from 'fs';
|
|
import { type SVGFile } from './readSvgs.mts';
|
|
|
|
export default async function copyIcons(
|
|
parsedSvgs: SVGFile[],
|
|
packageDir: string,
|
|
license: string
|
|
) {
|
|
const iconsDirectory = `${packageDir}/icons`;
|
|
|
|
if (existsSync(iconsDirectory)) {
|
|
unlinkSync(iconsDirectory);
|
|
}
|
|
|
|
if (!existsSync(iconsDirectory)) {
|
|
mkdirSync(iconsDirectory);
|
|
}
|
|
// eslint-disable-next-line arrow-body-style
|
|
const writeIconPromises = parsedSvgs.map(({ name, contents }) => {
|
|
let content = `<!-- ${license} -->\n${contents}`;
|
|
content = content.replace('<svg', `<svg\n class="lucide lucide-${name}"`);
|
|
|
|
return writeFile(`${iconsDirectory}/${name}.svg`, content);
|
|
});
|
|
|
|
await Promise.all(writeIconPromises);
|
|
}
|