fix: build script
This commit is contained in:
parent
919b3717f8
commit
86eaf1ded5
4 changed files with 4885 additions and 4885 deletions
4
build.js
4
build.js
|
@ -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
|
||||
})
|
||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "@cdransf/eleventy-tabler-icons-filled",
|
||||
"version": "2.0.1",
|
||||
"version": "2.0.3",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@cdransf/eleventy-tabler-icons-filled",
|
||||
"version": "2.0.1",
|
||||
"version": "2.0.3",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@11ty/eleventy": "v3.0.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@cdransf/eleventy-tabler-icons-filled",
|
||||
"version": "2.0.2",
|
||||
"version": "2.0.3",
|
||||
"description": "Shortcodes to add filled Tabler icons to your Eleventy projects",
|
||||
"type": "module",
|
||||
"main": "tablericons.js",
|
||||
|
|
Loading…
Reference in a new issue