Compare commits

...

16 commits
v2.0 ... main

4 changed files with 4986 additions and 38 deletions

View file

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

4943
icons.js

File diff suppressed because one or more lines are too long

12
package-lock.json generated
View file

@ -1,16 +1,16 @@
{ {
"name": "@cdransf/eleventy-plugin-tabler-icons", "name": "@cdransf/eleventy-plugin-tabler-icons",
"version": "2.0.0", "version": "2.11.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@cdransf/eleventy-plugin-tabler-icons", "name": "@cdransf/eleventy-plugin-tabler-icons",
"version": "2.0.0", "version": "2.11.1",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"@11ty/eleventy": "v3.0.0", "@11ty/eleventy": "v3.0.0",
"@tabler/icons": "^3.19.0" "@tabler/icons": "^3.31.0"
} }
}, },
"node_modules/@11ty/dependency-tree": { "node_modules/@11ty/dependency-tree": {
@ -349,9 +349,9 @@
} }
}, },
"node_modules/@tabler/icons": { "node_modules/@tabler/icons": {
"version": "3.19.0", "version": "3.31.0",
"resolved": "https://registry.npmjs.org/@tabler/icons/-/icons-3.19.0.tgz", "resolved": "https://registry.npmjs.org/@tabler/icons/-/icons-3.31.0.tgz",
"integrity": "sha512-A4WEWqpdbTfnpFEtwXqwAe9qf9sp1yRPvzppqAuwcoF0q5YInqB+JkJtSFToCyBpPVeLxJUxxkapLvt2qQgnag==", "integrity": "sha512-dblAdeKY3+GA1U+Q9eziZ0ooVlZMHsE8dqP0RkwvRtEsAULoKOYaCUOcJ4oW1DjWegdxk++UAt2SlQVnmeHv+g==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"funding": { "funding": {

View file

@ -1,7 +1,8 @@
{ {
"name": "@cdransf/eleventy-plugin-tabler-icons", "name": "@cdransf/eleventy-plugin-tabler-icons",
"version": "2.0.0", "version": "2.11.1",
"description": "Shortcodes to add Tabler icons to your Eleventy projects", "description": "Shortcodes to add Tabler icons to your Eleventy projects",
"type": "module",
"main": "tablericons.js", "main": "tablericons.js",
"files": [ "files": [
"tablericons.js", "tablericons.js",
@ -24,15 +25,15 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/cdransf/eleventy-plugin-tabler-icons.git" "url": "git+https://git.apps.coryd.dev/cdransf/eleventy-plugin-tabler-icons.git"
}, },
"homepage": "https://github.com/cdransf/eleventy-plugin-tabler-icons#readme", "homepage": "https://git.apps.coryd.dev/cdransf/eleventy-plugin-tabler-icons#readme",
"bugs": { "bugs": {
"url": "https://github.com/cdransf/eleventy-plugin-tabler-icons/issues" "url": "https://git.apps.coryd.dev/cdransf/eleventy-plugin-tabler-icons/issues"
}, },
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"@11ty/eleventy": "v3.0.0", "@11ty/eleventy": "v3.0.0",
"@tabler/icons": "^3.19.0" "@tabler/icons": "^3.31.0"
} }
} }