mirror of
https://github.com/simple-icons/simple-icons.git
synced 2024-11-16 00:59:07 +02:00
665b82590d
* remove icons/* entrypoints * remove icons/* tests * remove icons/* references from the README * reference actual variable in README console.log * merge develop * fix conflicts * fix * fix tests * Update scripts/build/package.js * Update README.md * fix ignore files
20 lines
441 B
JavaScript
20 lines
441 B
JavaScript
import {
|
|
getIconsData,
|
|
getIconSlug,
|
|
slugToVariableName,
|
|
} from '../scripts/utils.js';
|
|
import * as simpleIcons from '../icons.mjs';
|
|
import { testIcon } from './test-icon.js';
|
|
|
|
(async () => {
|
|
const icons = await getIconsData();
|
|
|
|
icons.map((icon) => {
|
|
const slug = getIconSlug(icon);
|
|
const variableName = slugToVariableName(slug);
|
|
const subject = simpleIcons[variableName];
|
|
|
|
testIcon(icon, subject, slug);
|
|
});
|
|
})();
|