fix: build script
This commit is contained in:
parent
ae77ce1387
commit
cc366297a7
3 changed files with 4889 additions and 4886 deletions
7
build.js
7
build.js
|
@ -14,8 +14,11 @@ 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').trim()
|
const contents = readFileSync(filePath, 'utf8').trim()
|
||||||
const lines = contents.split('\n')
|
|
||||||
const guts = lines.slice(1, -1).join(' ').replace(/\s{2,}/g, ' ')
|
const guts = contents
|
||||||
|
.replace(/^<svg[^>]*>/, '')
|
||||||
|
.replace(/<\/svg>$/, '')
|
||||||
|
.replace(/\s{2,}/g, ' ')
|
||||||
|
|
||||||
object[filename.slice(0, -4)] = guts
|
object[filename.slice(0, -4)] = guts
|
||||||
})
|
})
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@cdransf/eleventy-plugin-tabler-icons",
|
"name": "@cdransf/eleventy-plugin-tabler-icons",
|
||||||
"version": "2.1.0",
|
"version": "2.1.1",
|
||||||
"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",
|
||||||
|
|
Loading…
Reference in a new issue