2021-03-03 13:57:33 +03:00
|
|
|
#!/usr/bin/env node
|
|
|
|
/**
|
|
|
|
* @fileoverview
|
|
|
|
* Generates a MarkDown file that lists every brand name and their slug.
|
|
|
|
*/
|
|
|
|
|
2021-12-25 17:22:56 +03:00
|
|
|
import { promises as fs } from 'node:fs';
|
|
|
|
import path from 'node:path';
|
|
|
|
import { fileURLToPath } from 'node:url';
|
|
|
|
import { getIconsData, getIconSlug } from '../utils.js';
|
|
|
|
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
|
|
const __dirname = path.dirname(__filename);
|
2021-03-03 13:57:33 +03:00
|
|
|
|
2021-10-25 22:13:10 +03:00
|
|
|
const rootDir = path.resolve(__dirname, '..', '..');
|
|
|
|
const slugsFile = path.resolve(rootDir, 'slugs.md');
|
2021-03-03 13:57:33 +03:00
|
|
|
|
|
|
|
let content = `<!--
|
|
|
|
This file is automatically generated. If you want to change something, please
|
2021-05-07 20:55:06 +03:00
|
|
|
update the script at '${path.relative(rootDir, __filename)}'.
|
2021-03-03 13:57:33 +03:00
|
|
|
-->
|
|
|
|
|
|
|
|
# Simple Icons slugs
|
|
|
|
|
|
|
|
| Brand name | Brand slug |
|
|
|
|
| :--- | :--- |
|
|
|
|
`;
|
|
|
|
|
2021-12-25 17:22:56 +03:00
|
|
|
(async () => {
|
|
|
|
const icons = await getIconsData();
|
|
|
|
|
|
|
|
icons.forEach((icon) => {
|
|
|
|
const brandName = icon.title;
|
|
|
|
const brandSlug = getIconSlug(icon);
|
|
|
|
content += `| \`${brandName}\` | \`${brandSlug}\` |\n`;
|
|
|
|
});
|
2021-03-03 13:57:33 +03:00
|
|
|
|
2021-12-25 17:22:56 +03:00
|
|
|
await fs.writeFile(slugsFile, content);
|
|
|
|
})();
|