@rushstack/package-extractor 0.11.13 → 0.11.15
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 +44 -0
- package/CHANGELOG.md +13 -1
- package/dist/scripts/create-links.js +3 -5
- package/dist/scripts/create-links.js.map +1 -1
- package/dist/tsdoc-metadata.json +1 -1
- package/package.json +7 -7
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,50 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/package-extractor",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.11.15",
|
|
6
|
+
"tag": "@rushstack/package-extractor_v0.11.15",
|
|
7
|
+
"date": "Wed, 04 Feb 2026 20:42:47 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Update minimatch dependency from 10.0.3 to 10.1.2"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"dependency": [
|
|
15
|
+
{
|
|
16
|
+
"comment": "Updating dependency \"@rushstack/heft-webpack5-plugin\" to `1.2.13`"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"comment": "Updating dependency \"@rushstack/heft\" to `1.1.13`"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"comment": "Updating dependency \"@rushstack/webpack-preserve-dynamic-require-plugin\" to `0.11.124`"
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"version": "0.11.14",
|
|
29
|
+
"tag": "@rushstack/package-extractor_v0.11.14",
|
|
30
|
+
"date": "Wed, 04 Feb 2026 16:13:27 GMT",
|
|
31
|
+
"comments": {
|
|
32
|
+
"dependency": [
|
|
33
|
+
{
|
|
34
|
+
"comment": "Updating dependency \"@rushstack/ts-command-line\" to `5.2.0`"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"comment": "Updating dependency \"@rushstack/heft-webpack5-plugin\" to `1.2.12`"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"comment": "Updating dependency \"@rushstack/heft\" to `1.1.12`"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"comment": "Updating dependency \"@rushstack/webpack-preserve-dynamic-require-plugin\" to `0.11.123`"
|
|
44
|
+
}
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
},
|
|
4
48
|
{
|
|
5
49
|
"version": "0.11.13",
|
|
6
50
|
"tag": "@rushstack/package-extractor_v0.11.13",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
# Change Log - @rushstack/package-extractor
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Wed, 04 Feb 2026 20:42:47 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 0.11.15
|
|
6
|
+
Wed, 04 Feb 2026 20:42:47 GMT
|
|
7
|
+
|
|
8
|
+
### Patches
|
|
9
|
+
|
|
10
|
+
- Update minimatch dependency from 10.0.3 to 10.1.2
|
|
11
|
+
|
|
12
|
+
## 0.11.14
|
|
13
|
+
Wed, 04 Feb 2026 16:13:27 GMT
|
|
14
|
+
|
|
15
|
+
_Version update only_
|
|
4
16
|
|
|
5
17
|
## 0.11.13
|
|
6
18
|
Fri, 30 Jan 2026 01:16:13 GMT
|
|
@@ -29425,7 +29425,7 @@ const escapeSprintf_1 = __webpack_require__(/*! ../escapeSprintf */ 758523);
|
|
|
29425
29425
|
* The "argparse" library is a relatively advanced command-line parser with features such
|
|
29426
29426
|
* as word-wrapping and intelligible error messages (that are lacking in other similar
|
|
29427
29427
|
* libraries such as commander, yargs, and nomnom). Unfortunately, its ruby-inspired API
|
|
29428
|
-
* is awkward to use. The
|
|
29428
|
+
* is awkward to use. The base classes CommandLineParser and CommandLineAction
|
|
29429
29429
|
* provide a wrapper for "argparse" that makes defining and consuming arguments quick
|
|
29430
29430
|
* and simple, and enforces that appropriate documentation is provided for each parameter.
|
|
29431
29431
|
*
|
|
@@ -29437,7 +29437,6 @@ class CommandLineParser extends CommandLineParameterProvider_1.CommandLineParame
|
|
|
29437
29437
|
this._executed = false;
|
|
29438
29438
|
this._tabCompleteActionWasAdded = false;
|
|
29439
29439
|
this._options = options;
|
|
29440
|
-
this._actions = [];
|
|
29441
29440
|
this._actionsByName = new Map();
|
|
29442
29441
|
const { toolFilename, toolDescription, toolEpilog } = options;
|
|
29443
29442
|
this._argumentParser = new CommandLineParserExitError_1.CustomArgumentParser({
|
|
@@ -29451,7 +29450,7 @@ class CommandLineParser extends CommandLineParameterProvider_1.CommandLineParame
|
|
|
29451
29450
|
* Returns the list of actions that were defined for this CommandLineParser object.
|
|
29452
29451
|
*/
|
|
29453
29452
|
get actions() {
|
|
29454
|
-
return this.
|
|
29453
|
+
return Array.from(this._actionsByName.values());
|
|
29455
29454
|
}
|
|
29456
29455
|
/**
|
|
29457
29456
|
* Defines a new action that can be used with the CommandLineParser instance.
|
|
@@ -29464,7 +29463,6 @@ class CommandLineParser extends CommandLineParameterProvider_1.CommandLineParame
|
|
|
29464
29463
|
});
|
|
29465
29464
|
}
|
|
29466
29465
|
action._buildParser(this._actionsSubParser);
|
|
29467
|
-
this._actions.push(action);
|
|
29468
29466
|
this._actionsByName.set(action.actionName, action);
|
|
29469
29467
|
}
|
|
29470
29468
|
/**
|
|
@@ -29649,7 +29647,7 @@ class CommandLineParser extends CommandLineParameterProvider_1.CommandLineParame
|
|
|
29649
29647
|
...state,
|
|
29650
29648
|
parentParameterNames: updatedParentParameterNames
|
|
29651
29649
|
};
|
|
29652
|
-
for (const action of this.
|
|
29650
|
+
for (const action of this._actionsByName.values()) {
|
|
29653
29651
|
action._registerDefinedParameters(parentState);
|
|
29654
29652
|
}
|
|
29655
29653
|
}
|