@rushstack/ts-command-line 4.9.1

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.
Files changed (91) hide show
  1. package/CHANGELOG.json +1329 -0
  2. package/CHANGELOG.md +704 -0
  3. package/LICENSE +24 -0
  4. package/README.md +251 -0
  5. package/dist/ts-command-line.d.ts +878 -0
  6. package/dist/tsdoc-metadata.json +11 -0
  7. package/lib/CommandLineHelper.d.ts +14 -0
  8. package/lib/CommandLineHelper.d.ts.map +1 -0
  9. package/lib/CommandLineHelper.js +22 -0
  10. package/lib/CommandLineHelper.js.map +1 -0
  11. package/lib/Constants.d.ts +12 -0
  12. package/lib/Constants.d.ts.map +1 -0
  13. package/lib/Constants.js +5 -0
  14. package/lib/Constants.js.map +1 -0
  15. package/lib/index.d.ts +23 -0
  16. package/lib/index.d.ts.map +1 -0
  17. package/lib/index.js +42 -0
  18. package/lib/index.js.map +1 -0
  19. package/lib/parameters/BaseClasses.d.ts +100 -0
  20. package/lib/parameters/BaseClasses.d.ts.map +1 -0
  21. package/lib/parameters/BaseClasses.js +148 -0
  22. package/lib/parameters/BaseClasses.js.map +1 -0
  23. package/lib/parameters/CommandLineChoiceListParameter.d.ts +33 -0
  24. package/lib/parameters/CommandLineChoiceListParameter.d.ts.map +1 -0
  25. package/lib/parameters/CommandLineChoiceListParameter.js +84 -0
  26. package/lib/parameters/CommandLineChoiceListParameter.js.map +1 -0
  27. package/lib/parameters/CommandLineChoiceParameter.d.ts +40 -0
  28. package/lib/parameters/CommandLineChoiceParameter.d.ts.map +1 -0
  29. package/lib/parameters/CommandLineChoiceParameter.js +95 -0
  30. package/lib/parameters/CommandLineChoiceParameter.js.map +1 -0
  31. package/lib/parameters/CommandLineDefinition.d.ts +207 -0
  32. package/lib/parameters/CommandLineDefinition.d.ts.map +1 -0
  33. package/lib/parameters/CommandLineDefinition.js +5 -0
  34. package/lib/parameters/CommandLineDefinition.js.map +1 -0
  35. package/lib/parameters/CommandLineFlagParameter.d.ts +29 -0
  36. package/lib/parameters/CommandLineFlagParameter.d.ts.map +1 -0
  37. package/lib/parameters/CommandLineFlagParameter.js +72 -0
  38. package/lib/parameters/CommandLineFlagParameter.js.map +1 -0
  39. package/lib/parameters/CommandLineIntegerListParameter.d.ts +29 -0
  40. package/lib/parameters/CommandLineIntegerListParameter.d.ts.map +1 -0
  41. package/lib/parameters/CommandLineIntegerListParameter.js +82 -0
  42. package/lib/parameters/CommandLineIntegerListParameter.js.map +1 -0
  43. package/lib/parameters/CommandLineIntegerParameter.d.ts +36 -0
  44. package/lib/parameters/CommandLineIntegerParameter.d.ts.map +1 -0
  45. package/lib/parameters/CommandLineIntegerParameter.js +86 -0
  46. package/lib/parameters/CommandLineIntegerParameter.js.map +1 -0
  47. package/lib/parameters/CommandLineRemainder.d.ts +28 -0
  48. package/lib/parameters/CommandLineRemainder.d.ts.map +1 -0
  49. package/lib/parameters/CommandLineRemainder.js +48 -0
  50. package/lib/parameters/CommandLineRemainder.js.map +1 -0
  51. package/lib/parameters/CommandLineStringListParameter.d.ts +29 -0
  52. package/lib/parameters/CommandLineStringListParameter.d.ts.map +1 -0
  53. package/lib/parameters/CommandLineStringListParameter.js +73 -0
  54. package/lib/parameters/CommandLineStringListParameter.js.map +1 -0
  55. package/lib/parameters/CommandLineStringParameter.d.ts +36 -0
  56. package/lib/parameters/CommandLineStringParameter.d.ts.map +1 -0
  57. package/lib/parameters/CommandLineStringParameter.js +85 -0
  58. package/lib/parameters/CommandLineStringParameter.js.map +1 -0
  59. package/lib/parameters/EnvironmentVariableParser.d.ts +10 -0
  60. package/lib/parameters/EnvironmentVariableParser.d.ts.map +1 -0
  61. package/lib/parameters/EnvironmentVariableParser.js +51 -0
  62. package/lib/parameters/EnvironmentVariableParser.js.map +1 -0
  63. package/lib/providers/CommandLineAction.d.ts +76 -0
  64. package/lib/providers/CommandLineAction.d.ts.map +1 -0
  65. package/lib/providers/CommandLineAction.js +73 -0
  66. package/lib/providers/CommandLineAction.js.map +1 -0
  67. package/lib/providers/CommandLineParameterProvider.d.ts +202 -0
  68. package/lib/providers/CommandLineParameterProvider.d.ts.map +1 -0
  69. package/lib/providers/CommandLineParameterProvider.js +374 -0
  70. package/lib/providers/CommandLineParameterProvider.js.map +1 -0
  71. package/lib/providers/CommandLineParser.d.ts +100 -0
  72. package/lib/providers/CommandLineParser.d.ts.map +1 -0
  73. package/lib/providers/CommandLineParser.js +204 -0
  74. package/lib/providers/CommandLineParser.js.map +1 -0
  75. package/lib/providers/CommandLineParserExitError.d.ts +10 -0
  76. package/lib/providers/CommandLineParserExitError.d.ts.map +1 -0
  77. package/lib/providers/CommandLineParserExitError.js +53 -0
  78. package/lib/providers/CommandLineParserExitError.js.map +1 -0
  79. package/lib/providers/DynamicCommandLineAction.d.ts +9 -0
  80. package/lib/providers/DynamicCommandLineAction.d.ts.map +1 -0
  81. package/lib/providers/DynamicCommandLineAction.js +21 -0
  82. package/lib/providers/DynamicCommandLineAction.js.map +1 -0
  83. package/lib/providers/DynamicCommandLineParser.d.ts +8 -0
  84. package/lib/providers/DynamicCommandLineParser.d.ts.map +1 -0
  85. package/lib/providers/DynamicCommandLineParser.js +16 -0
  86. package/lib/providers/DynamicCommandLineParser.js.map +1 -0
  87. package/lib/providers/TabCompletionAction.d.ts +18 -0
  88. package/lib/providers/TabCompletionAction.d.ts.map +1 -0
  89. package/lib/providers/TabCompletionAction.js +211 -0
  90. package/lib/providers/TabCompletionAction.js.map +1 -0
  91. package/package.json +28 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,704 @@
1
+ # Change Log - @rushstack/ts-command-line
2
+
3
+ This log was last generated on Thu, 23 Sep 2021 00:10:41 GMT and should not be manually modified.
4
+
5
+ ## 4.9.1
6
+ Thu, 23 Sep 2021 00:10:41 GMT
7
+
8
+ ### Patches
9
+
10
+ - Upgrade the `@types/node` dependency to version to version 12.
11
+
12
+ ## 4.9.0
13
+ Fri, 20 Aug 2021 15:08:10 GMT
14
+
15
+ ### Minor changes
16
+
17
+ - Add getParameterStringMap to CommandLineParameterProvider, to easily query parameter usage for telemetry
18
+
19
+ ## 4.8.1
20
+ Mon, 12 Jul 2021 23:08:26 GMT
21
+
22
+ _Version update only_
23
+
24
+ ## 4.8.0
25
+ Thu, 01 Jul 2021 15:08:27 GMT
26
+
27
+ ### Minor changes
28
+
29
+ - Add ChoiceList and IntegerList parameter types
30
+
31
+ ## 4.7.10
32
+ Mon, 12 Apr 2021 15:10:28 GMT
33
+
34
+ _Version update only_
35
+
36
+ ## 4.7.9
37
+ Tue, 06 Apr 2021 15:14:22 GMT
38
+
39
+ _Version update only_
40
+
41
+ ## 4.7.8
42
+ Thu, 10 Dec 2020 23:25:49 GMT
43
+
44
+ _Version update only_
45
+
46
+ ## 4.7.7
47
+ Wed, 11 Nov 2020 01:08:59 GMT
48
+
49
+ _Version update only_
50
+
51
+ ## 4.7.6
52
+ Fri, 30 Oct 2020 06:38:39 GMT
53
+
54
+ _Version update only_
55
+
56
+ ## 4.7.5
57
+ Fri, 30 Oct 2020 00:10:14 GMT
58
+
59
+ _Version update only_
60
+
61
+ ## 4.7.4
62
+ Wed, 28 Oct 2020 01:18:03 GMT
63
+
64
+ _Version update only_
65
+
66
+ ## 4.7.3
67
+ Tue, 06 Oct 2020 00:24:06 GMT
68
+
69
+ _Version update only_
70
+
71
+ ## 4.7.2
72
+ Mon, 05 Oct 2020 22:36:57 GMT
73
+
74
+ _Version update only_
75
+
76
+ ## 4.7.1
77
+ Wed, 30 Sep 2020 18:39:17 GMT
78
+
79
+ ### Patches
80
+
81
+ - Update to build with @rushstack/heft-node-rig
82
+
83
+ ## 4.7.0
84
+ Wed, 30 Sep 2020 06:53:53 GMT
85
+
86
+ ### Minor changes
87
+
88
+ - Upgrade compiler; the API now requires TypeScript 3.9 or newer
89
+
90
+ ### Patches
91
+
92
+ - Update README.md
93
+
94
+ ## 4.6.10
95
+ Tue, 22 Sep 2020 05:45:57 GMT
96
+
97
+ _Version update only_
98
+
99
+ ## 4.6.9
100
+ Tue, 22 Sep 2020 01:45:31 GMT
101
+
102
+ _Version update only_
103
+
104
+ ## 4.6.8
105
+ Tue, 22 Sep 2020 00:08:53 GMT
106
+
107
+ _Version update only_
108
+
109
+ ## 4.6.7
110
+ Sat, 19 Sep 2020 04:37:27 GMT
111
+
112
+ _Version update only_
113
+
114
+ ## 4.6.6
115
+ Sat, 19 Sep 2020 03:33:07 GMT
116
+
117
+ _Version update only_
118
+
119
+ ## 4.6.5
120
+ Fri, 18 Sep 2020 22:57:24 GMT
121
+
122
+ _Version update only_
123
+
124
+ ## 4.6.4
125
+ Thu, 27 Aug 2020 11:27:06 GMT
126
+
127
+ _Version update only_
128
+
129
+ ## 4.6.3
130
+ Mon, 24 Aug 2020 07:35:20 GMT
131
+
132
+ _Version update only_
133
+
134
+ ## 4.6.2
135
+ Sat, 22 Aug 2020 05:55:43 GMT
136
+
137
+ _Version update only_
138
+
139
+ ## 4.6.1
140
+ Fri, 21 Aug 2020 01:21:17 GMT
141
+
142
+ ### Patches
143
+
144
+ - Fix an issue where usage of a parameter specified undocumentedSynonyms yielded invalid data.
145
+
146
+ ## 4.6.0
147
+ Thu, 20 Aug 2020 15:13:52 GMT
148
+
149
+ ### Minor changes
150
+
151
+ - Add a feature for specifying "undocumented synonyms" for parameters.
152
+
153
+ ## 4.5.0
154
+ Tue, 18 Aug 2020 23:59:42 GMT
155
+
156
+ ### Minor changes
157
+
158
+ - Add support for shell tab completion.
159
+
160
+ ## 4.4.8
161
+ Mon, 17 Aug 2020 04:53:23 GMT
162
+
163
+ _Version update only_
164
+
165
+ ## 4.4.7
166
+ Wed, 12 Aug 2020 00:10:05 GMT
167
+
168
+ ### Patches
169
+
170
+ - Updated project to build with Heft
171
+
172
+ ## 4.4.6
173
+ Fri, 03 Jul 2020 05:46:41 GMT
174
+
175
+ ### Patches
176
+
177
+ - Improve formatting of errors reported by CommandLineParser.execute()
178
+
179
+ ## 4.4.5
180
+ Thu, 25 Jun 2020 06:43:35 GMT
181
+
182
+ _Version update only_
183
+
184
+ ## 4.4.4
185
+ Wed, 24 Jun 2020 09:50:48 GMT
186
+
187
+ _Version update only_
188
+
189
+ ## 4.4.3
190
+ Wed, 24 Jun 2020 09:04:28 GMT
191
+
192
+ _Version update only_
193
+
194
+ ## 4.4.2
195
+ Mon, 01 Jun 2020 08:34:17 GMT
196
+
197
+ ### Patches
198
+
199
+ - Fix a typo in the supplementary notes for parameters with environment variable mappings
200
+
201
+ ## 4.4.1
202
+ Wed, 27 May 2020 05:15:10 GMT
203
+
204
+ _Version update only_
205
+
206
+ ## 4.4.0
207
+ Fri, 15 May 2020 08:10:59 GMT
208
+
209
+ ### Minor changes
210
+
211
+ - Add a new feature defineCommandLineRemainder() which allows additional unvalidated CLI arguments, e.g. to pass along to another tool
212
+ - Add the ability for an environment variable to specify multiple values for CommandLineStringListParameter, encoded as a JSON array
213
+ - Fix some bugs that prevented a CommandLineParser from being defined without any actions
214
+
215
+ ### Patches
216
+
217
+ - Fix a bug with environmentVariable mapping for CommandLineFlagParameter
218
+ - Use API Extractor to trim internal APIs from the .d.ts rollup
219
+ - Improve the README.md and API documentation
220
+
221
+ ## 4.3.14
222
+ Wed, 08 Apr 2020 04:07:33 GMT
223
+
224
+ _Version update only_
225
+
226
+ ## 4.3.13
227
+ Sat, 28 Mar 2020 00:37:16 GMT
228
+
229
+ _Version update only_
230
+
231
+ ## 4.3.12
232
+ Wed, 18 Mar 2020 15:07:47 GMT
233
+
234
+ ### Patches
235
+
236
+ - Upgrade cyclic dependencies
237
+
238
+ ## 4.3.11
239
+ Tue, 17 Mar 2020 23:55:58 GMT
240
+
241
+ ### Patches
242
+
243
+ - PACKAGE NAME CHANGE: The NPM scope was changed from `@microsoft/ts-command-line` to `@rushstack/ts-command-line`
244
+
245
+ ## 4.3.10
246
+ Tue, 21 Jan 2020 21:56:14 GMT
247
+
248
+ _Version update only_
249
+
250
+ ## 4.3.9
251
+ Sun, 19 Jan 2020 02:26:52 GMT
252
+
253
+ ### Patches
254
+
255
+ - Upgrade Node typings to Node 10
256
+
257
+ ## 4.3.8
258
+ Fri, 17 Jan 2020 01:08:23 GMT
259
+
260
+ _Version update only_
261
+
262
+ ## 4.3.7
263
+ Thu, 09 Jan 2020 06:44:13 GMT
264
+
265
+ _Version update only_
266
+
267
+ ## 4.3.6
268
+ Wed, 08 Jan 2020 00:11:31 GMT
269
+
270
+ _Version update only_
271
+
272
+ ## 4.3.5
273
+ Mon, 11 Nov 2019 16:07:56 GMT
274
+
275
+ _Version update only_
276
+
277
+ ## 4.3.4
278
+ Tue, 22 Oct 2019 06:24:44 GMT
279
+
280
+ _Version update only_
281
+
282
+ ## 4.3.3
283
+ Fri, 18 Oct 2019 15:15:00 GMT
284
+
285
+ ### Patches
286
+
287
+ - Fix Choice parameter error when only one alternative value is provided
288
+
289
+ ## 4.3.2
290
+ Sun, 29 Sep 2019 23:56:29 GMT
291
+
292
+ ### Patches
293
+
294
+ - Update repository URL
295
+
296
+ ## 4.3.1
297
+ Tue, 24 Sep 2019 02:58:49 GMT
298
+
299
+ ### Patches
300
+
301
+ - Add back a missing dependency.
302
+
303
+ ## 4.3.0
304
+ Mon, 23 Sep 2019 15:14:55 GMT
305
+
306
+ ### Minor changes
307
+
308
+ - Remove unnecessary dependencies on @types/argparse and @types/node
309
+
310
+ ## 4.2.8
311
+ Tue, 10 Sep 2019 22:32:23 GMT
312
+
313
+ ### Patches
314
+
315
+ - Update documentation
316
+
317
+ ## 4.2.7
318
+ Mon, 12 Aug 2019 15:15:14 GMT
319
+
320
+ ### Patches
321
+
322
+ - fix for #1443 allow rush command to use numbers
323
+
324
+ ## 4.2.6
325
+ Wed, 12 Jun 2019 19:12:33 GMT
326
+
327
+ ### Patches
328
+
329
+ - Update Readme.
330
+
331
+ ## 4.2.5
332
+ Mon, 27 May 2019 04:13:44 GMT
333
+
334
+ ### Patches
335
+
336
+ - Fix a broken link in the README.md (GitHub issue #1285)
337
+
338
+ ## 4.2.4
339
+ Mon, 06 May 2019 20:46:21 GMT
340
+
341
+ ### Patches
342
+
343
+ - Allow colons in command line action names
344
+
345
+ ## 4.2.3
346
+ Fri, 07 Dec 2018 17:04:56 GMT
347
+
348
+ ### Patches
349
+
350
+ - Updated to use the new InternalError class for reporting software defects
351
+
352
+ ## 4.2.2
353
+ Thu, 06 Sep 2018 01:25:26 GMT
354
+
355
+ ### Patches
356
+
357
+ - Update "repository" field in package.json
358
+
359
+ ## 4.2.1
360
+ Thu, 23 Aug 2018 18:18:53 GMT
361
+
362
+ ### Patches
363
+
364
+ - Republish all packages in web-build-tools to resolve GitHub issue #782
365
+
366
+ ## 4.2.0
367
+ Fri, 08 Jun 2018 08:43:52 GMT
368
+
369
+ ### Minor changes
370
+
371
+ - Add CommandLineChoiceParameter.appendToArgList() and CommandLineParser.tryGetAction()
372
+
373
+ ## 4.1.0
374
+ Fri, 27 Apr 2018 03:04:32 GMT
375
+
376
+ ### Minor changes
377
+
378
+ - Add "defaultValue", "environmentVariable", and "required" features for command-line parameters
379
+
380
+ ## 4.0.0
381
+ Thu, 19 Apr 2018 21:25:56 GMT
382
+
383
+ ### Breaking changes
384
+
385
+ - Rename "CommandLineOptionParameter" to "CommandLineChoiceParameter" (API change)
386
+ - Rename "ICommandLineChoiceDefinition.options" to "alternatives" (API change)
387
+ - Add DynamicCommandLineAction, DynamicCommandLineParser, and other APIs to support defining and reading command-line parameters at runtime
388
+ - Rename "actionVerb" to "actionName" (API change)
389
+ - Replace "CommandLineAction.options" with more concise top-level properties (API change)
390
+
391
+ ## 3.1.1
392
+ Fri, 23 Mar 2018 00:34:53 GMT
393
+
394
+ ### Patches
395
+
396
+ - Upgrade colors to version ~1.2.1
397
+
398
+ ## 3.1.0
399
+ Thu, 15 Mar 2018 20:00:50 GMT
400
+
401
+ ### Minor changes
402
+
403
+ - Add default error handler so the caller to CommandLineParser.execute() is not expected to handle promise rejections
404
+ - Add a new API "CommandLineParser.executeWithoutErrorHandling()"
405
+
406
+ ## 3.0.7
407
+ Mon, 12 Mar 2018 20:36:19 GMT
408
+
409
+ ### Patches
410
+
411
+ - Locked down some "@types/" dependency versions to avoid upgrade conflicts
412
+
413
+ ## 3.0.6
414
+ Fri, 02 Mar 2018 01:13:59 GMT
415
+
416
+ _Version update only_
417
+
418
+ ## 3.0.5
419
+ Tue, 27 Feb 2018 22:05:57 GMT
420
+
421
+ _Version update only_
422
+
423
+ ## 3.0.4
424
+ Wed, 21 Feb 2018 22:04:19 GMT
425
+
426
+ _Version update only_
427
+
428
+ ## 3.0.3
429
+ Wed, 21 Feb 2018 03:13:28 GMT
430
+
431
+ _Version update only_
432
+
433
+ ## 3.0.2
434
+ Sat, 17 Feb 2018 02:53:49 GMT
435
+
436
+ _Version update only_
437
+
438
+ ## 3.0.1
439
+ Fri, 16 Feb 2018 22:05:23 GMT
440
+
441
+ _Version update only_
442
+
443
+ ## 3.0.0
444
+ Fri, 16 Feb 2018 17:05:11 GMT
445
+
446
+ ### Breaking changes
447
+
448
+ - Change all CommandLineActions to have an asychronous API that returns a promise.
449
+
450
+ ## 2.3.10
451
+ Wed, 07 Feb 2018 17:05:11 GMT
452
+
453
+ _Version update only_
454
+
455
+ ## 2.3.9
456
+ Fri, 26 Jan 2018 22:05:30 GMT
457
+
458
+ _Version update only_
459
+
460
+ ## 2.3.8
461
+ Fri, 26 Jan 2018 17:53:38 GMT
462
+
463
+ ### Patches
464
+
465
+ - Force a patch bump in case the previous version was an empty package
466
+
467
+ ## 2.3.7
468
+ Fri, 26 Jan 2018 00:36:51 GMT
469
+
470
+ _Version update only_
471
+
472
+ ## 2.3.6
473
+ Tue, 23 Jan 2018 17:05:28 GMT
474
+
475
+ _Version update only_
476
+
477
+ ## 2.3.5
478
+ Thu, 18 Jan 2018 03:23:46 GMT
479
+
480
+ ### Patches
481
+
482
+ - Enable package typings generated by api-extractor
483
+
484
+ ## 2.3.4
485
+ Thu, 18 Jan 2018 00:48:06 GMT
486
+
487
+ _Version update only_
488
+
489
+ ## 2.3.3
490
+ Wed, 17 Jan 2018 10:49:31 GMT
491
+
492
+ _Version update only_
493
+
494
+ ## 2.3.2
495
+ Fri, 12 Jan 2018 03:35:22 GMT
496
+
497
+ _Version update only_
498
+
499
+ ## 2.3.1
500
+ Thu, 11 Jan 2018 22:31:51 GMT
501
+
502
+ _Version update only_
503
+
504
+ ## 2.3.0
505
+ Wed, 10 Jan 2018 20:40:01 GMT
506
+
507
+ ### Minor changes
508
+
509
+ - Upgrade to Node 8
510
+
511
+ ## 2.2.14
512
+ Tue, 09 Jan 2018 17:05:51 GMT
513
+
514
+ ### Patches
515
+
516
+ - Get web-build-tools building with pnpm
517
+
518
+ ## 2.2.13
519
+ Sun, 07 Jan 2018 05:12:08 GMT
520
+
521
+ _Version update only_
522
+
523
+ ## 2.2.12
524
+ Fri, 05 Jan 2018 20:26:45 GMT
525
+
526
+ _Version update only_
527
+
528
+ ## 2.2.11
529
+ Fri, 05 Jan 2018 00:48:42 GMT
530
+
531
+ _Version update only_
532
+
533
+ ## 2.2.10
534
+ Fri, 22 Dec 2017 17:04:46 GMT
535
+
536
+ _Version update only_
537
+
538
+ ## 2.2.9
539
+ Tue, 12 Dec 2017 03:33:27 GMT
540
+
541
+ _Version update only_
542
+
543
+ ## 2.2.8
544
+ Thu, 30 Nov 2017 23:59:09 GMT
545
+
546
+ _Version update only_
547
+
548
+ ## 2.2.7
549
+ Thu, 30 Nov 2017 23:12:21 GMT
550
+
551
+ _Version update only_
552
+
553
+ ## 2.2.6
554
+ Wed, 29 Nov 2017 17:05:37 GMT
555
+
556
+ _Version update only_
557
+
558
+ ## 2.2.5
559
+ Tue, 28 Nov 2017 23:43:55 GMT
560
+
561
+ _Version update only_
562
+
563
+ ## 2.2.4
564
+ Mon, 13 Nov 2017 17:04:50 GMT
565
+
566
+ _Version update only_
567
+
568
+ ## 2.2.3
569
+ Mon, 06 Nov 2017 17:04:18 GMT
570
+
571
+ _Version update only_
572
+
573
+ ## 2.2.2
574
+ Thu, 02 Nov 2017 16:05:24 GMT
575
+
576
+ ### Patches
577
+
578
+ - lock the reference version between web build tools projects
579
+
580
+ ## 2.2.1
581
+ Wed, 01 Nov 2017 21:06:08 GMT
582
+
583
+ ### Patches
584
+
585
+ - Upgrade cyclic dependencies
586
+
587
+ ## 2.2.0
588
+ Tue, 31 Oct 2017 21:04:04 GMT
589
+
590
+ ### Minor changes
591
+
592
+ - Add ability to specify default value for enum options.
593
+
594
+ ## 2.1.4
595
+ Tue, 31 Oct 2017 16:04:55 GMT
596
+
597
+ _Version update only_
598
+
599
+ ## 2.1.3
600
+ Wed, 25 Oct 2017 20:03:59 GMT
601
+
602
+ _Version update only_
603
+
604
+ ## 2.1.2
605
+ Tue, 24 Oct 2017 18:17:12 GMT
606
+
607
+ _Version update only_
608
+
609
+ ## 2.1.1
610
+ Mon, 23 Oct 2017 21:53:12 GMT
611
+
612
+ ### Patches
613
+
614
+ - Updated cyclic dependencies
615
+
616
+ ## 2.1.0
617
+ Fri, 22 Sep 2017 01:04:02 GMT
618
+
619
+ ### Minor changes
620
+
621
+ - Upgrade to es6
622
+
623
+ ## 2.0.7
624
+ Fri, 08 Sep 2017 01:28:04 GMT
625
+
626
+ ### Patches
627
+
628
+ - Deprecate @types/es6-coll ections in favor of built-in typescript typings 'es2015.collection' a nd 'es2015.iterable'
629
+
630
+ ## 2.0.6
631
+ Thu, 31 Aug 2017 18:41:18 GMT
632
+
633
+ _Version update only_
634
+
635
+ ## 2.0.5
636
+ Wed, 30 Aug 2017 01:04:34 GMT
637
+
638
+ _Version update only_
639
+
640
+ ## 2.0.4
641
+ Tue, 22 Aug 2017 13:04:22 GMT
642
+
643
+ _Version update only_
644
+
645
+ ## 2.0.3
646
+ Tue, 25 Jul 2017 20:03:31 GMT
647
+
648
+ ### Patches
649
+
650
+ - Upgrade to TypeScript 2.4
651
+
652
+ ## 2.0.2
653
+ Fri, 23 Jun 2017 20:05:07 GMT
654
+
655
+ ### Patches
656
+
657
+ - Initial open source release of this library
658
+
659
+ ## 2.0.1
660
+ Thu, 25 May 2017 21:09:42 GMT
661
+
662
+ ### Patches
663
+
664
+ - Dependency version change
665
+
666
+ ## 2.0.0
667
+ Fri, 17 Feb 2017 23:09:23 GMT
668
+
669
+ ### Breaking changes
670
+
671
+ - General availability
672
+
673
+ ### Minor changes
674
+
675
+ - Added a "option" parameter, which can limit the input to a list of possible strings.
676
+ - Added the ability to give custom names to keys in the help menu.
677
+
678
+ ### Patches
679
+
680
+ - Locked version numbers for @types packages
681
+ - Updated .npmignore
682
+
683
+ ## 1.1.1
684
+ Tue, 06 Dec 2016 20:44:26 GMT
685
+
686
+ ### Patches
687
+
688
+ - Changes for RC0 release.
689
+
690
+ ## 1.2.0
691
+
692
+ _Version update only_
693
+
694
+ ## 1.1.0
695
+
696
+ ### Minor changes
697
+
698
+ - Introduces a new command line argument type for a list of strings
699
+ - Introduces a new command line argument type for integers
700
+
701
+ ## 1.0.1
702
+
703
+ _Initial release_
704
+
package/LICENSE ADDED
@@ -0,0 +1,24 @@
1
+ @rushstack/ts-command-line
2
+
3
+ Copyright (c) Microsoft Corporation. All rights reserved.
4
+
5
+ MIT License
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining
8
+ a copy of this software and associated documentation files (the
9
+ "Software"), to deal in the Software without restriction, including
10
+ without limitation the rights to use, copy, modify, merge, publish,
11
+ distribute, sublicense, and/or sell copies of the Software, and to
12
+ permit persons to whom the Software is furnished to do so, subject to
13
+ the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be
16
+ included in all copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.