mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 07:27:42 +01:00
* Revert sync to async functions * Replace more sync fs functions * Format files * Fix build svelte package
21 lines
680 B
JavaScript
21 lines
680 B
JavaScript
/* eslint-disable import/no-extraneous-dependencies */
|
|
import { basename } from 'path';
|
|
import { readSvg } from '@lucide/helpers';
|
|
|
|
/**
|
|
* Build an object in the format: `{ <name>: <contents> }`.
|
|
* @param {string[]} svgFiles - A list of filenames.
|
|
* @param {Function} getSvg - A function that returns the contents of an SVG file given a filename.
|
|
* @returns {Object}
|
|
*/
|
|
export default function readSVGs(svgFiles, iconsDirectory) {
|
|
const SVGReadPromises = svgFiles.map(async (svgFile) => {
|
|
const name = basename(svgFile, '.svg');
|
|
const contents = await readSvg(svgFile, iconsDirectory);
|
|
|
|
return { name, contents };
|
|
});
|
|
|
|
return Promise.all(SVGReadPromises);
|
|
}
|