simple-icons/scripts/release/update-slugs-table.js

35 lines
872 B
JavaScript
Raw Normal View History

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.
*/
const fs = require('fs');
const path = require('path');
2021-03-03 13:57:33 +03:00
const rootDir = path.resolve(__dirname, '..', '..');
const dataFile = path.resolve(rootDir, '_data', 'simple-icons.json');
const slugsFile = path.resolve(rootDir, 'slugs.md');
2021-03-03 13:57:33 +03:00
const data = require(dataFile);
const { getIconSlug } = require('../utils.js');
2021-03-03 13:57:33 +03:00
let content = `<!--
This file is automatically generated. If you want to change something, please
update the script at '${path.relative(rootDir, __filename)}'.
2021-03-03 13:57:33 +03:00
-->
# Simple Icons slugs
| Brand name | Brand slug |
| :--- | :--- |
`;
data.icons.forEach((icon) => {
2021-03-03 13:57:33 +03:00
const brandName = icon.title;
const brandSlug = getIconSlug(icon);
content += `| \`${brandName}\` | \`${brandSlug}\` |\n`;
2021-03-03 13:57:33 +03:00
});
fs.writeFileSync(slugsFile, content);