@thi.ng/args
Advanced tools
Comparing version 2.3.30 to 2.3.31
# Change Log | ||
- **Last updated**: 2024-04-11T12:32:44Z | ||
- **Last updated**: 2024-04-20T14:42:45Z | ||
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub) | ||
@@ -12,2 +12,8 @@ | ||
### [2.3.31](https://github.com/thi-ng/umbrella/tree/@thi.ng/args@2.3.31) (2024-04-20) | ||
#### ♻️ Refactoring | ||
- update type usage ([68dd6a2](https://github.com/thi-ng/umbrella/commit/68dd6a2)) | ||
### [2.3.2](https://github.com/thi-ng/umbrella/tree/@thi.ng/args@2.3.2) (2023-12-26) | ||
@@ -14,0 +20,0 @@ |
{ | ||
"name": "@thi.ng/args", | ||
"version": "2.3.30", | ||
"version": "2.3.31", | ||
"description": "Declarative, functional & typechecked CLI argument/options parser, value coercions etc.", | ||
@@ -39,8 +39,8 @@ "type": "module", | ||
"dependencies": { | ||
"@thi.ng/api": "^8.10.1", | ||
"@thi.ng/checks": "^3.6.1", | ||
"@thi.ng/errors": "^2.5.4", | ||
"@thi.ng/logger": "^3.0.9", | ||
"@thi.ng/strings": "^3.7.30", | ||
"@thi.ng/text-format": "^2.2.2" | ||
"@thi.ng/api": "^8.11.0", | ||
"@thi.ng/checks": "^3.6.2", | ||
"@thi.ng/errors": "^2.5.5", | ||
"@thi.ng/logger": "^3.0.10", | ||
"@thi.ng/strings": "^3.7.31", | ||
"@thi.ng/text-format": "^2.2.3" | ||
}, | ||
@@ -108,3 +108,3 @@ "devDependencies": { | ||
}, | ||
"gitHead": "18a0c063a7b33d790e5bc2486c106f45f663ac28\n" | ||
"gitHead": "8339d05ecc857e529c7325a9839c0063b89e728d\n" | ||
} |
/// <reference types="node" /> | ||
import type { IObjectOf } from "@thi.ng/api"; | ||
import type { IObjectOf, Maybe } from "@thi.ng/api"; | ||
import type { Args, ParseOpts, ParseResult } from "./api.js"; | ||
@@ -16,3 +16,3 @@ export declare const ParseError: { | ||
}; | ||
export declare const parse: <T extends IObjectOf<any>>(specs: Args<T>, argv: string[], opts?: Partial<ParseOpts>) => ParseResult<T> | undefined; | ||
export declare const parse: <T extends IObjectOf<any>>(specs: Args<T>, argv: string[], opts?: Partial<ParseOpts>) => Maybe<ParseResult<T>>; | ||
//# sourceMappingURL=parse.d.ts.map |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
64334
Updated@thi.ng/api@^8.11.0
Updated@thi.ng/checks@^3.6.2
Updated@thi.ng/errors@^2.5.5
Updated@thi.ng/logger@^3.0.10
Updated@thi.ng/strings@^3.7.31
Updated@thi.ng/text-format@^2.2.3