Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@thi.ng/args

Package Overview
Dependencies
Maintainers
1
Versions
142
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thi.ng/args - npm Package Compare versions

Comparing version 2.3.30 to 2.3.31

8

CHANGELOG.md
# 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 @@

16

package.json
{
"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
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc