eleventy-plugin-tabler-icons/build.js

36 lines
No EOL
1.1 KiB
JavaScript

import { readdirSync, readFileSync, writeFileSync } from 'fs'
import path from 'path'
const ICONS_DIR = path.join('node_modules', '@tabler', 'icons', 'icons', 'outline')
const CONTENTS = {
HEAD: `<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">`,
TAIL: '</svg>'
}
const object = {}
try {
const fileNames = readdirSync(ICONS_DIR)
fileNames.forEach((filename) => {
const filePath = path.join(ICONS_DIR, filename)
const contents = readFileSync(filePath, 'utf8').trim()
const guts = contents
.replace(/^<svg[^>]*>/, '')
.replace(/<\/svg>$/, '')
.replace(/\s{2,}/g, ' ')
object[filename.slice(0, -4)] = guts
})
const output = `// Generated by build.js at ${new Date().toISOString()}
export default ${JSON.stringify({ ...object, HEAD: CONTENTS.HEAD, TAIL: CONTENTS.TAIL }, null, 2)};
`
writeFileSync('./icons.js', output)
console.log('Icons successfully generated and saved to icons.js!')
} catch (err) {
console.error('Error processing icons:', err)
}