@bemoje/cli 2.1.4 → 2.1.5
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/index.d.ts +1 -5
- package/index.mjs +5 -8
- package/package.json +4 -2
package/index.d.ts
CHANGED
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
import { AllUnionFields } from 'type-fest';
|
|
2
|
-
import { CamelCase } from 'type-fest';
|
|
3
|
-
import { SetFieldType } from 'type-fest';
|
|
4
|
-
import { SetRequired } from 'type-fest';
|
|
5
|
-
import { Simplify } from 'type-fest';
|
|
1
|
+
import { Simplify, SetFieldType, SetRequired, AllUnionFields, CamelCase } from 'type-fest';
|
|
6
2
|
|
|
7
3
|
/** Logger interface defining methods for different log levels. */
|
|
8
4
|
interface Logger {
|
package/index.mjs
CHANGED
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
import C from 'ansi-colors';
|
|
2
|
-
import
|
|
3
|
-
import { inspect } from 'util';
|
|
4
|
-
import { isFunction } from 'es-toolkit/predicate';
|
|
5
|
-
import { isPrimitive } from 'es-toolkit/predicate';
|
|
6
|
-
import { isPromise } from 'util/types';
|
|
7
|
-
import { isString } from 'es-toolkit/predicate';
|
|
8
|
-
import { kebabCase } from 'es-toolkit/string';
|
|
2
|
+
import { isFunction, isString, isPrimitive } from 'es-toolkit/predicate';
|
|
9
3
|
import memoizee from 'memoizee';
|
|
10
4
|
import { ms } from 'enhanced-ms';
|
|
11
|
-
import { parseArgs } from 'util';
|
|
5
|
+
import { inspect, parseArgs } from 'util';
|
|
6
|
+
import { kebabCase } from 'es-toolkit/string';
|
|
7
|
+
import humanizeDuration from 'humanize-duration';
|
|
8
|
+
import { isPromise } from 'util/types';
|
|
12
9
|
|
|
13
10
|
var __defProp = Object.defineProperty;
|
|
14
11
|
var __name = (target, value) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bemoje/cli",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.5",
|
|
4
4
|
"description": "A type-safe CLI composer that can parse argv and generate help without execution coupling.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -33,7 +33,9 @@
|
|
|
33
33
|
"es-toolkit": "^1.44.0",
|
|
34
34
|
"humanize-duration": "^3.33.2",
|
|
35
35
|
"memoizee": "^0.4.17",
|
|
36
|
-
"type-fest": "^5.4.4"
|
|
36
|
+
"type-fest": "^5.4.4",
|
|
37
|
+
"@types/humanize-duration": "^3.27.4",
|
|
38
|
+
"@types/memoizee": "^0.4.12"
|
|
37
39
|
},
|
|
38
40
|
"publishConfig": {
|
|
39
41
|
"access": "public"
|