@rushstack/ts-command-line 4.22.5 → 4.22.7

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.json CHANGED
@@ -1,6 +1,35 @@
1
1
  {
2
2
  "name": "@rushstack/ts-command-line",
3
3
  "entries": [
4
+ {
5
+ "version": "4.22.7",
6
+ "tag": "@rushstack/ts-command-line_v4.22.7",
7
+ "date": "Tue, 10 Sep 2024 20:08:11 GMT",
8
+ "comments": {
9
+ "dependency": [
10
+ {
11
+ "comment": "Updating dependency \"@rushstack/terminal\" to `0.14.1`"
12
+ }
13
+ ]
14
+ }
15
+ },
16
+ {
17
+ "version": "4.22.6",
18
+ "tag": "@rushstack/ts-command-line_v4.22.6",
19
+ "date": "Wed, 21 Aug 2024 05:43:04 GMT",
20
+ "comments": {
21
+ "none": [
22
+ {
23
+ "comment": "Fix a README typo."
24
+ }
25
+ ],
26
+ "dependency": [
27
+ {
28
+ "comment": "Updating dependency \"@rushstack/terminal\" to `0.14.0`"
29
+ }
30
+ ]
31
+ }
32
+ },
4
33
  {
5
34
  "version": "4.22.5",
6
35
  "tag": "@rushstack/ts-command-line_v4.22.5",
package/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  # Change Log - @rushstack/ts-command-line
2
2
 
3
- This log was last generated on Mon, 12 Aug 2024 22:16:04 GMT and should not be manually modified.
3
+ This log was last generated on Tue, 10 Sep 2024 20:08:11 GMT and should not be manually modified.
4
+
5
+ ## 4.22.7
6
+ Tue, 10 Sep 2024 20:08:11 GMT
7
+
8
+ _Version update only_
9
+
10
+ ## 4.22.6
11
+ Wed, 21 Aug 2024 05:43:04 GMT
12
+
13
+ _Version update only_
4
14
 
5
15
  ## 4.22.5
6
16
  Mon, 12 Aug 2024 22:16:04 GMT
package/README.md CHANGED
@@ -45,7 +45,7 @@ Several different kinds of parameters are supported:
45
45
  | flag | `--verbose` | `boolean` | Value is `true` if the flag was specified on the command line, `false` otherwise. |
46
46
  | integer | `--max-retry 3` | `int` | The argument is an integer number |
47
47
  | string | `--title "Hello, world"` | `string` | The argument is a text string. |
48
- | choice | `--color red` | `string` | The argument is must be a string from a list of allowed choices (similar to an enum). |
48
+ | choice | `--color red` | `string` | The argument must be a string from a list of allowed choices (similar to an enum). |
49
49
  | string list | `-o file1.txt -o file2.txt` | `string[]` | The argument is a text string. The parameter can be specified multiple times to build a list. |
50
50
 
51
51
  Other parameter kinds could be implemented if requested. That said, keeping your CLI grammar simple and systematic makes it easier for users to learn.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rushstack/ts-command-line",
3
- "version": "4.22.5",
3
+ "version": "4.22.7",
4
4
  "description": "An object-oriented command-line parser for TypeScript",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,7 +14,7 @@
14
14
  "@types/argparse": "1.0.38",
15
15
  "argparse": "~1.0.9",
16
16
  "string-argv": "~0.3.1",
17
- "@rushstack/terminal": "0.13.4"
17
+ "@rushstack/terminal": "0.14.1"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@rushstack/heft": "0.66.17",