mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 22:27:43 +01:00
* Improve license message * Implement license notice in lucide-static * Tighten package PR workflows * Update lockfile
40 lines
1.0 KiB
JavaScript
40 lines
1.0 KiB
JavaScript
/* eslint-disable import/no-extraneous-dependencies */
|
|
import { stringify } from 'svgson';
|
|
import { format } from 'prettier';
|
|
import { appendFile } from '../../../scripts/helpers.mjs';
|
|
|
|
export default function generateSprite(svgs, packageDir, license) {
|
|
const symbols = svgs.map(({ name, parsedSvg }) => ({
|
|
name: 'symbol',
|
|
type: 'element',
|
|
attributes: {
|
|
id: name,
|
|
},
|
|
children: parsedSvg.children,
|
|
}));
|
|
|
|
const spriteSvgObject = {
|
|
name: 'svg',
|
|
type: 'element',
|
|
attributes: {
|
|
xmlns: 'http://www.w3.org/2000/svg',
|
|
version: '1.1',
|
|
},
|
|
children: [
|
|
{
|
|
name: 'defs',
|
|
type: 'element',
|
|
children: symbols,
|
|
},
|
|
],
|
|
};
|
|
|
|
const spriteSvg = stringify(spriteSvgObject);
|
|
const prettifiedSprite = format(spriteSvg, { parser: 'babel' }).replace(/;/g, '');
|
|
|
|
const xmlMeta = `<?xml version="1.0" encoding="utf-8"?>\n<!-- ${license} -->\n`;
|
|
|
|
appendFile(xmlMeta, `sprite.svg`, packageDir);
|
|
appendFile(prettifiedSprite, `sprite.svg`, packageDir);
|
|
}
|