fix: build script

This commit is contained in:
Cory Dransfeldt 2024-10-02 20:30:32 -07:00
parent 284c76225a
commit 919b3717f8
No known key found for this signature in database
3 changed files with 4915 additions and 28 deletions

View file

@ -1,28 +1,33 @@
const fs = require('fs'); import { readdirSync, readFileSync, writeFileSync } from 'fs'
const path = `./node_modules/@tabler/icons/icons/filled/`; import path from 'path'
const fileNames = fs.readdirSync(path);
const object = {}; const ICONS_DIR = path.join('node_modules', '@tabler', 'icons', 'icons', 'outline')
const CONTENTS = { 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\">", 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>", TAIL: '</svg>'
}; }
const object = {}
fileNames.forEach((filename) => { try {
const contents = fs const fileNames = readdirSync(ICONS_DIR)
.readFileSync(path + filename)
.toString()
.trimEnd();
const lines = contents.split("\n");
const guts = lines
.slice(1, lines.length - 1)
.join("")
.replace(/\ \ /g, "");
if (object) object[filename.slice(0, -4)] = guts;
});
fs.writeFileSync( fileNames.forEach((filename) => {
"./icons.js", const filePath = path.join(ICONS_DIR, filename)
`// Generated by build.js at ${new Date().toISOString()}\n\nmodule.exports = ${JSON.stringify( const contents = readFileSync(filePath, 'utf8').trimEnd()
{...object, HEAD: CONTENTS['HEAD'], TAIL: CONTENTS['TAIL']} const lines = contents.split('\n')
)};\n` const guts = lines.slice(1, -1).join('').replace(/\s+/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)
}

4886
icons.js

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
{ {
"name": "@cdransf/eleventy-tabler-icons-filled", "name": "@cdransf/eleventy-tabler-icons-filled",
"version": "2.0.1", "version": "2.0.2",
"description": "Shortcodes to add filled Tabler icons to your Eleventy projects", "description": "Shortcodes to add filled Tabler icons to your Eleventy projects",
"type": "module", "type": "module",
"main": "tablericons.js", "main": "tablericons.js",