@tabler/icons-webfont 2.47.0 → 3.0.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/fonts/.gitkeep +0 -0
- package/fonts/tabler-icons.eot +0 -0
- package/fonts/tabler-icons.ttf +0 -0
- package/fonts/tabler-icons.woff +0 -0
- package/fonts/tabler-icons.woff2 +0 -0
- package/package.json +4 -7
- package/tabler-icons.css +656 -40
- package/tabler-icons.css.map +1 -1
- package/tabler-icons.html +1406 -83
- package/tabler-icons.min.css +2 -2
- package/tabler-icons.min.css.map +1 -1
- package/tabler-icons.scss +335 -31
package/LICENSE
CHANGED
package/fonts/.gitkeep
ADDED
|
File without changes
|
package/fonts/tabler-icons.eot
CHANGED
|
Binary file
|
package/fonts/tabler-icons.ttf
CHANGED
|
Binary file
|
package/fonts/tabler-icons.woff
CHANGED
|
Binary file
|
package/fonts/tabler-icons.woff2
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tabler/icons-webfont",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-alpha.1",
|
|
4
4
|
"description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.",
|
|
5
5
|
"homepage": "https://tabler-icons.io",
|
|
6
6
|
"bugs": {
|
|
@@ -16,15 +16,12 @@
|
|
|
16
16
|
"directory": "packages/icons-webfont"
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
|
-
"build": "pnpm run
|
|
20
|
-
"build:prepare": "mkdir -p icons-outlined fonts && rm -fd
|
|
19
|
+
"build": "pnpm run copy && pnpm run build:prepare && pnpm run build:outline && pnpm run build:webfont && pnpm run build:css",
|
|
20
|
+
"build:prepare": "mkdir -p icons-outlined fonts && rm -fd fonts/*",
|
|
21
21
|
"build:outline": "node .build/build-outline.mjs",
|
|
22
|
-
"build:optimize": "svgo icons-outlined/*",
|
|
23
|
-
"build:fix-outline": "fontforge -lang=py -script .build/fix-outline.py",
|
|
24
22
|
"build:webfont": "rm -fd fonts/* && node .build/build-webfont.mjs",
|
|
25
23
|
"build:css": "sass tabler-icons.scss tabler-icons.css --style expanded && sass tabler-icons.scss tabler-icons.min.css --style compressed",
|
|
26
24
|
"build:clean": "rm -rf ./icons-outlined",
|
|
27
|
-
"clean": "rm -rf ./iconfont",
|
|
28
25
|
"copy": "pnpm run copy:license",
|
|
29
26
|
"copy:license": "cp ../../LICENSE ./LICENSE"
|
|
30
27
|
},
|
|
@@ -35,7 +32,7 @@
|
|
|
35
32
|
"sass": "./tabler-icons.scss",
|
|
36
33
|
"style": "./tabler-icons.min.css",
|
|
37
34
|
"dependencies": {
|
|
38
|
-
"@tabler/icons": "
|
|
35
|
+
"@tabler/icons": "3.0.0-alpha.1"
|
|
39
36
|
},
|
|
40
37
|
"keywords": [
|
|
41
38
|
"icons",
|