fix: build script

This commit is contained in:
Cory Dransfeldt 2024-10-02 20:35:19 -07:00
parent 3e2999c3e2
commit 7e978a7038
No known key found for this signature in database
4 changed files with 4885 additions and 4885 deletions

View file

@ -13,9 +13,9 @@ try {
fileNames.forEach((filename) => {
const filePath = path.join(ICONS_DIR, filename)
const contents = readFileSync(filePath, 'utf8').trimEnd()
const contents = readFileSync(filePath, 'utf8').trim()
const lines = contents.split('\n')
const guts = lines.slice(1, -1).join('').replace(/\s+/g, '')
const guts = lines.slice(1, -1).join(' ').replace(/\s{2,}/g, ' ')
object[filename.slice(0, -4)] = guts
})

View file

@ -1,4 +1,4 @@
// Generated by build.js at 2024-10-03T03:29:43.699Z
// Generated by build.js at 2024-10-03T03:34:38.934Z
export default {
"a-b-2": " xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"icon icon-tabler icons-tabler-outline icon-tabler-a-b-2\" > <path stroke=\"none\" d=\"M0 0h24v24H0z\" fill=\"none\"/> <path d=\"M16 21h3c.81 0 1.48 -.67 1.48 -1.48l.02 -.02c0 -.82 -.69 -1.5 -1.5 -1.5h-3v3z\" /> <path d=\"M16 15h2.5c.84 -.01 1.5 .66 1.5 1.5s-.66 1.5 -1.5 1.5h-2.5v-3z\" /> <path d=\"M4 9v-4c0 -1.036 .895 -2 2 -2s2 .964 2 2v4\" /> <path d=\"M2.99 11.98a9 9 0 0 0 9 9m9 -9a9 9 0 0 0 -9 -9\" /> <path d=\"M8 7h-4\" />",

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "@cdransf/eleventy-plugin-tabler-icons",
"version": "2.0.2",
"version": "2.0.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@cdransf/eleventy-plugin-tabler-icons",
"version": "2.0.2",
"version": "2.0.3",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "v3.0.0",

View file

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