@thi.ng/args 2.1.5 → 2.1.8
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/CHANGELOG.md +7 -1
- package/args.d.ts +2 -2
- package/coerce.js +2 -2
- package/package.json +16 -16
- package/parse.d.ts +1 -1
- package/parse.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2022-
|
|
3
|
+
- **Last updated**: 2022-06-09T16:14:01Z
|
|
4
4
|
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
|
|
5
5
|
|
|
6
6
|
All notable changes to this project will be documented in this file.
|
|
@@ -9,6 +9,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
|
|
|
9
9
|
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
|
|
10
10
|
and/or version bumps of transitive dependencies.
|
|
11
11
|
|
|
12
|
+
### [2.1.6](https://github.com/thi-ng/umbrella/tree/@thi.ng/args@2.1.6) (2022-04-07)
|
|
13
|
+
|
|
14
|
+
#### ♻️ Refactoring
|
|
15
|
+
|
|
16
|
+
- replace deprecated .substr() w/ .substring() ([0710509](https://github.com/thi-ng/umbrella/commit/0710509))
|
|
17
|
+
|
|
12
18
|
## [2.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/args@2.1.0) (2021-11-17)
|
|
13
19
|
|
|
14
20
|
#### 🚀 Features
|
package/args.d.ts
CHANGED
|
@@ -169,7 +169,7 @@ export declare const oneOfMulti: <K extends string, S extends Partial<ArgSpec<K[
|
|
|
169
169
|
* @param spec -
|
|
170
170
|
* @param delim -
|
|
171
171
|
*/
|
|
172
|
-
export declare const kvPairs: <S extends Partial<ArgSpec<KVDict>>>(spec: S, delim?: string, strict?: boolean
|
|
172
|
+
export declare const kvPairs: <S extends Partial<ArgSpec<KVDict>>>(spec: S, delim?: string, strict?: boolean) => S & {
|
|
173
173
|
coerce: Fn<string[], KVDict>;
|
|
174
174
|
hint: string;
|
|
175
175
|
multi: true;
|
|
@@ -184,7 +184,7 @@ export declare const kvPairs: <S extends Partial<ArgSpec<KVDict>>>(spec: S, deli
|
|
|
184
184
|
* @param delim -
|
|
185
185
|
* @param strict -
|
|
186
186
|
*/
|
|
187
|
-
export declare const kvPairsMulti: <S extends Partial<ArgSpec<KVMultiDict>>>(spec: S, delim?: string, strict?: boolean
|
|
187
|
+
export declare const kvPairsMulti: <S extends Partial<ArgSpec<KVMultiDict>>>(spec: S, delim?: string, strict?: boolean) => S & {
|
|
188
188
|
coerce: Fn<string[], KVMultiDict>;
|
|
189
189
|
hint: string;
|
|
190
190
|
multi: true;
|
package/coerce.js
CHANGED
|
@@ -20,8 +20,8 @@ export function coerceKV(delim = "=", strict = false, multi = false) {
|
|
|
20
20
|
idx < 1 &&
|
|
21
21
|
illegalArgs(`got '${x}', but expected a 'key${delim}value' pair`);
|
|
22
22
|
if (idx > 0) {
|
|
23
|
-
const id = x.
|
|
24
|
-
const val = x.
|
|
23
|
+
const id = x.substring(0, idx);
|
|
24
|
+
const val = x.substring(idx + 1);
|
|
25
25
|
if (multi) {
|
|
26
26
|
acc[id] ? acc[id].push(val) : (acc[id] = [val]);
|
|
27
27
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/args",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.8",
|
|
4
4
|
"description": "Declarative, functional & typechecked CLI argument/options parser, value coercions etc.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,18 +34,18 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.3.
|
|
38
|
-
"@thi.ng/checks": "^3.
|
|
39
|
-
"@thi.ng/errors": "^2.1.
|
|
40
|
-
"@thi.ng/strings": "^3.3.
|
|
37
|
+
"@thi.ng/api": "^8.3.7",
|
|
38
|
+
"@thi.ng/checks": "^3.2.0",
|
|
39
|
+
"@thi.ng/errors": "^2.1.7",
|
|
40
|
+
"@thi.ng/strings": "^3.3.5"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@microsoft/api-extractor": "^7.
|
|
44
|
-
"@thi.ng/testament": "^0.2.
|
|
43
|
+
"@microsoft/api-extractor": "^7.25.0",
|
|
44
|
+
"@thi.ng/testament": "^0.2.8",
|
|
45
45
|
"rimraf": "^3.0.2",
|
|
46
46
|
"tools": "^0.0.1",
|
|
47
|
-
"typedoc": "^0.22.
|
|
48
|
-
"typescript": "^4.
|
|
47
|
+
"typedoc": "^0.22.17",
|
|
48
|
+
"typescript": "^4.7.3"
|
|
49
49
|
},
|
|
50
50
|
"keywords": [
|
|
51
51
|
"argument",
|
|
@@ -75,26 +75,26 @@
|
|
|
75
75
|
],
|
|
76
76
|
"exports": {
|
|
77
77
|
".": {
|
|
78
|
-
"
|
|
78
|
+
"default": "./index.js"
|
|
79
79
|
},
|
|
80
80
|
"./api": {
|
|
81
|
-
"
|
|
81
|
+
"default": "./api.js"
|
|
82
82
|
},
|
|
83
83
|
"./args": {
|
|
84
|
-
"
|
|
84
|
+
"default": "./args.js"
|
|
85
85
|
},
|
|
86
86
|
"./coerce": {
|
|
87
|
-
"
|
|
87
|
+
"default": "./coerce.js"
|
|
88
88
|
},
|
|
89
89
|
"./parse": {
|
|
90
|
-
"
|
|
90
|
+
"default": "./parse.js"
|
|
91
91
|
},
|
|
92
92
|
"./usage": {
|
|
93
|
-
"
|
|
93
|
+
"default": "./usage.js"
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
96
|
"thi.ng": {
|
|
97
97
|
"year": 2018
|
|
98
98
|
},
|
|
99
|
-
"gitHead": "
|
|
99
|
+
"gitHead": "9e516d30a1a537e027a6b3d78bf9121bc5831d31\n"
|
|
100
100
|
}
|
package/parse.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { IObjectOf } from "@thi.ng/api";
|
|
2
2
|
import type { Args, ParseOpts, ParseResult } from "./api.js";
|
|
3
|
-
export declare const parse: <T extends IObjectOf<any>>(specs: Args<T>, argv: string[], opts?: Partial<ParseOpts>
|
|
3
|
+
export declare const parse: <T extends IObjectOf<any>>(specs: Args<T>, argv: string[], opts?: Partial<ParseOpts>) => ParseResult<T> | undefined;
|
|
4
4
|
//# sourceMappingURL=parse.d.ts.map
|
package/parse.js
CHANGED
|
@@ -57,10 +57,10 @@ const parseKey = (specs, aliases, acc, a) => {
|
|
|
57
57
|
// terminator arg, stop parsing
|
|
58
58
|
if (a === "--")
|
|
59
59
|
return { state: 1 };
|
|
60
|
-
id = camel(a.
|
|
60
|
+
id = camel(a.substring(2));
|
|
61
61
|
}
|
|
62
62
|
else {
|
|
63
|
-
id = aliases[a.
|
|
63
|
+
id = aliases[a.substring(1)];
|
|
64
64
|
!id && illegalArgs(`unknown option: ${a}`);
|
|
65
65
|
}
|
|
66
66
|
const spec = specs[id];
|