Compare commits
12 commits
Author | SHA1 | Date | |
---|---|---|---|
c598e946b9 | |||
b825a2577f | |||
06be04b053 | |||
21e29e3d8f | |||
73dcd1769e | |||
411f26fc84 | |||
e93e8dc1f6 | |||
1eba931ab2 | |||
65971a84c0 | |||
f3caf901cf | |||
60d4e420ab | |||
cc366297a7 |
4 changed files with 4953 additions and 4896 deletions
7
build.js
7
build.js
|
@ -14,8 +14,11 @@ try {
|
|||
fileNames.forEach((filename) => {
|
||||
const filePath = path.join(ICONS_DIR, filename)
|
||||
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
|
||||
})
|
||||
|
|
12
package-lock.json
generated
12
package-lock.json
generated
|
@ -1,16 +1,16 @@
|
|||
{
|
||||
"name": "@cdransf/eleventy-plugin-tabler-icons",
|
||||
"version": "2.1.0",
|
||||
"version": "2.11.1",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@cdransf/eleventy-plugin-tabler-icons",
|
||||
"version": "2.1.0",
|
||||
"version": "2.11.1",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@11ty/eleventy": "v3.0.0",
|
||||
"@tabler/icons": "^3.20.0"
|
||||
"@tabler/icons": "^3.31.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@11ty/dependency-tree": {
|
||||
|
@ -349,9 +349,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/@tabler/icons": {
|
||||
"version": "3.20.0",
|
||||
"resolved": "https://registry.npmjs.org/@tabler/icons/-/icons-3.20.0.tgz",
|
||||
"integrity": "sha512-nXSeUzsCOxX/Of+kdUVQfxL9bG+ck8XCWNf9dGSpE+nhVexRwk/4HiDQDxFDysfT7vfgSut6GXnrZsU5M5dSlA==",
|
||||
"version": "3.31.0",
|
||||
"resolved": "https://registry.npmjs.org/@tabler/icons/-/icons-3.31.0.tgz",
|
||||
"integrity": "sha512-dblAdeKY3+GA1U+Q9eziZ0ooVlZMHsE8dqP0RkwvRtEsAULoKOYaCUOcJ4oW1DjWegdxk++UAt2SlQVnmeHv+g==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"funding": {
|
||||
|
|
10
package.json
10
package.json
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@cdransf/eleventy-plugin-tabler-icons",
|
||||
"version": "2.1.0",
|
||||
"version": "2.11.1",
|
||||
"description": "Shortcodes to add Tabler icons to your Eleventy projects",
|
||||
"type": "module",
|
||||
"main": "tablericons.js",
|
||||
|
@ -25,15 +25,15 @@
|
|||
},
|
||||
"repository": {
|
||||
"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": {
|
||||
"url": "https://github.com/cdransf/eleventy-plugin-tabler-icons/issues"
|
||||
"url": "https://git.apps.coryd.dev/cdransf/eleventy-plugin-tabler-icons/issues"
|
||||
},
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@11ty/eleventy": "v3.0.0",
|
||||
"@tabler/icons": "^3.20.0"
|
||||
"@tabler/icons": "^3.31.0"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue