mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 21:37:43 +01:00
* Implement deprecate comment lucide-react * Add export template with comment * Add block comment to Lucide Svelte * Add blockcomment to lucide-angular * Add block comment to lucide-static * revert runtime change build:tags * Fix failed tests * Remove optional property in icon schema
49 lines
1.4 KiB
JavaScript
49 lines
1.4 KiB
JavaScript
/* eslint-disable import/no-extraneous-dependencies */
|
|
import fs from 'fs';
|
|
import path from 'path';
|
|
import getArgumentOptions from 'minimist';
|
|
import { parseSync } from 'svgson';
|
|
|
|
import {
|
|
readSvgDirectory,
|
|
getCurrentDirPath,
|
|
} from '../../../scripts/helpers.mjs';
|
|
import readSvgs from './readSvgs.mjs';
|
|
import generateSprite from './generateSprite.mjs';
|
|
import generateIconNodes from './generateIconNodes.mjs';
|
|
import copyIcons from './copyIcons.mjs';
|
|
|
|
import pkg from '../package.json' assert { type: 'json' };
|
|
|
|
const cliArguments = getArgumentOptions(process.argv.slice(2));
|
|
const createDirectory = (dir) => {
|
|
if (!fs.existsSync(dir)) {
|
|
fs.mkdirSync(dir);
|
|
}
|
|
};
|
|
|
|
const currentDir = getCurrentDirPath(import.meta.url);
|
|
|
|
const PACKAGE_DIR = path.resolve(currentDir, '../');
|
|
const ICONS_DIR = path.join(PACKAGE_DIR, '../../icons');
|
|
const LIB_DIR = path.join(PACKAGE_DIR, cliArguments.output || 'lib');
|
|
const ICON_MODULE_DIR = path.join(LIB_DIR, 'icons');
|
|
|
|
const license = `@license ${pkg.name} v${pkg.version} - ${pkg.license}`;
|
|
|
|
createDirectory(LIB_DIR);
|
|
createDirectory(ICON_MODULE_DIR);
|
|
|
|
const svgFiles = readSvgDirectory(ICONS_DIR);
|
|
const svgs = readSvgs(svgFiles, ICONS_DIR);
|
|
|
|
const parsedSvgs = svgs.map(({ name, contents }) => ({
|
|
name,
|
|
contents,
|
|
parsedSvg: parseSync(contents),
|
|
}));
|
|
|
|
generateSprite(parsedSvgs, PACKAGE_DIR, license);
|
|
generateIconNodes(parsedSvgs, PACKAGE_DIR);
|
|
copyIcons(parsedSvgs, PACKAGE_DIR, license);
|