@fastkit/icon-font-gen 0.10.5 → 0.11.0
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/dist/icon-font-gen.mjs +2 -2
- package/package.json +6 -5
package/dist/icon-font-gen.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import path from 'path';
|
|
1
|
+
import path from 'node:path';
|
|
2
2
|
import { installPackage, HashComparator, findPackageDir, esbuildRequire } from '@fastkit/node-util';
|
|
3
3
|
import fs from 'fs-extra';
|
|
4
4
|
import chokidar from 'chokidar';
|
|
@@ -361,7 +361,7 @@ Path of the configuration file. (default: [your package directory]${path.sep}${D
|
|
|
361
361
|
});
|
|
362
362
|
});
|
|
363
363
|
cli.help();
|
|
364
|
-
cli.version("0.
|
|
364
|
+
cli.version("0.11.0");
|
|
365
365
|
cli.parse();
|
|
366
366
|
}
|
|
367
367
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fastkit/icon-font-gen",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "A tool to generate icon web fonts and their definitions Type-safe for your application.",
|
|
5
5
|
"buildOptions": {
|
|
6
6
|
"name": "IconFont"
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"main": "./dist/icon-font-gen.mjs",
|
|
20
20
|
"exports": {
|
|
21
21
|
".": "./dist/icon-font-gen.mjs",
|
|
22
|
+
"./dist/*": "./dist/*",
|
|
22
23
|
"./package.json": "./package.json"
|
|
23
24
|
},
|
|
24
25
|
"files": [
|
|
@@ -41,10 +42,10 @@
|
|
|
41
42
|
},
|
|
42
43
|
"homepage": "https://github.com/dadajam4/fastkit/tree/main/packages/icon-font-gen#readme",
|
|
43
44
|
"dependencies": {
|
|
44
|
-
"@fastkit/ev": "0.
|
|
45
|
-
"@fastkit/icon-font": "0.
|
|
46
|
-
"@fastkit/node-util": "0.
|
|
47
|
-
"@fastkit/tiny-logger": "0.
|
|
45
|
+
"@fastkit/ev": "0.11.0",
|
|
46
|
+
"@fastkit/icon-font": "0.11.0",
|
|
47
|
+
"@fastkit/node-util": "0.11.0",
|
|
48
|
+
"@fastkit/tiny-logger": "0.11.0",
|
|
48
49
|
"cac": "^6.7.11",
|
|
49
50
|
"chokidar": "^3.5.0",
|
|
50
51
|
"fs-extra": "^11.1.0",
|