fix: build script
This commit is contained in:
parent
284c76225a
commit
919b3717f8
3 changed files with 4915 additions and 28 deletions
53
build.js
53
build.js
|
@ -1,28 +1,33 @@
|
|||
const fs = require('fs');
|
||||
const path = `./node_modules/@tabler/icons/icons/filled/`;
|
||||
const fileNames = fs.readdirSync(path);
|
||||
const object = {};
|
||||
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>",
|
||||
};
|
||||
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 contents = fs
|
||||
.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;
|
||||
});
|
||||
const filePath = path.join(ICONS_DIR, filename)
|
||||
const contents = readFileSync(filePath, 'utf8').trimEnd()
|
||||
const lines = contents.split('\n')
|
||||
const guts = lines.slice(1, -1).join('').replace(/\s+/g, '')
|
||||
|
||||
fs.writeFileSync(
|
||||
"./icons.js",
|
||||
`// Generated by build.js at ${new Date().toISOString()}\n\nmodule.exports = ${JSON.stringify(
|
||||
{...object, HEAD: CONTENTS['HEAD'], TAIL: CONTENTS['TAIL']}
|
||||
)};\n`
|
||||
);
|
||||
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
4886
icons.js
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"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",
|
||||
"type": "module",
|
||||
"main": "tablericons.js",
|
||||
|
|
Loading…
Reference in a new issue