fontconv 0.0.8 → 0.0.9
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/esm/cli.js +1 -1
- package/package.json +2 -2
- package/script/cli.js +1 -1
package/esm/cli.js
CHANGED
|
@@ -7,7 +7,7 @@ const program = new Command();
|
|
|
7
7
|
program
|
|
8
8
|
.name("fontconv")
|
|
9
9
|
.description("Convert and compress fonts (.ttf, .otf, .eot, .svg, .woff, .woff2).")
|
|
10
|
-
.version("0.0.
|
|
10
|
+
.version("0.0.9");
|
|
11
11
|
program
|
|
12
12
|
.argument("<input>", "Path of input font file")
|
|
13
13
|
.argument("<output>", "Path of output font file")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fontconv",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "Convert and compress fonts (.ttf, .otf, .eot, .svg, .woff, .woff2).",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"fontconv": "./esm/cli.js"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@marmooo/ttf2svg": "^0.2.
|
|
28
|
+
"@marmooo/ttf2svg": "^0.2.9",
|
|
29
29
|
"commander": "^14.0.3",
|
|
30
30
|
"opentype.js": "1.3.4",
|
|
31
31
|
"svg2ttf": "6.0.3",
|
package/script/cli.js
CHANGED
|
@@ -42,7 +42,7 @@ const program = new commander_1.Command();
|
|
|
42
42
|
program
|
|
43
43
|
.name("fontconv")
|
|
44
44
|
.description("Convert and compress fonts (.ttf, .otf, .eot, .svg, .woff, .woff2).")
|
|
45
|
-
.version("0.0.
|
|
45
|
+
.version("0.0.9");
|
|
46
46
|
program
|
|
47
47
|
.argument("<input>", "Path of input font file")
|
|
48
48
|
.argument("<output>", "Path of output font file")
|