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) => { fileNames.forEach((filename) => {
const filePath = path.join(ICONS_DIR, 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 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 object[filename.slice(0, -4)] = guts
}) })

9760
icons.js

File diff suppressed because it is too large Load diff

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "@cdransf/eleventy-plugin-tabler-icons", "name": "@cdransf/eleventy-plugin-tabler-icons",
"version": "2.0.2", "version": "2.0.3",
"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.2", "version": "2.0.3",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"@11ty/eleventy": "v3.0.0", "@11ty/eleventy": "v3.0.0",

View file

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