mirror of
https://github.com/enso-org/enso.git
synced 2024-12-19 20:21:36 +03:00
9fb3d9a2fa
- Partially addresses #8228 - Moves several files into `@/util/vue` and `@/util/data` - Makes imports more consistent: - Remove redundant trailing `.ts` - Convert *some* imports to use `@/` rather than `./` - Ideally it should be all imports other than the ones outside of `src/`, but I can't be sure I've found all of them - Merge *some* duplicated imports (caused by one being an `import type`) # Important Notes None
31 lines
1.0 KiB
JavaScript
31 lines
1.0 KiB
JavaScript
import * as fs from 'node:fs/promises'
|
|
|
|
console.info('Reading icons from "./src/assets/icons.svg"...')
|
|
const icons = await fs.readFile('./src/assets/icons.svg', { encoding: 'utf-8' })
|
|
const iconNames = icons.match(/(?<=^ {4}<g id=")[^"]+/gm) ?? []
|
|
|
|
// All generated files MUST follow Prettier formatting.
|
|
console.info('Writing icon names to "./src/util/iconList.json"...')
|
|
await fs.writeFile('./src/util/iconList.json', JSON.stringify(iconNames, undefined, 2) + '\n')
|
|
console.info('Writing icon name type to "./src/util/iconName.ts"...')
|
|
await fs.writeFile(
|
|
'./src/util/iconName.ts',
|
|
`\
|
|
// Generated by \`scripts/generateIcons.js\`.
|
|
// Please run \`npm run generate\` to regenerate this file whenever \`icons.svg\` is changed.
|
|
import iconNames from '@/util/iconList.json'
|
|
|
|
export type Icon =
|
|
${iconNames?.map((name) => ` | '${name}'`).join('\n')}
|
|
|
|
export { iconNames }
|
|
|
|
const iconNamesSet = new Set(iconNames)
|
|
|
|
export function isIconName(value: string): value is Icon {
|
|
return iconNamesSet.has(value)
|
|
}
|
|
`,
|
|
)
|
|
console.info('Done.')
|