Convert JS files to MJS to clarify how they should be interpreted

This commit is contained in:
James Brunton
2025-09-03 13:58:02 +01:00
parent e1e57f2cfd
commit 76c4f58b9d
4 changed files with 4 additions and 4 deletions

View File

@@ -155,7 +155,7 @@ async function main() {
// Generate TypeScript types
const typesContent = `// Auto-generated icon types
// This file is automatically generated by scripts/generate-icons.js
// This file is automatically generated by scripts/generate-icons.mjs
// Do not edit manually - changes will be overwritten
export type MaterialSymbolIcon = ${usedIcons.map(icon => `'${icon}'`).join(' | ')};