@rushstack/package-extractor 0.11.12 → 0.11.14

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,45 @@
1
1
  {
2
2
  "name": "@rushstack/package-extractor",
3
3
  "entries": [
4
+ {
5
+ "version": "0.11.14",
6
+ "tag": "@rushstack/package-extractor_v0.11.14",
7
+ "date": "Wed, 04 Feb 2026 16:13:27 GMT",
8
+ "comments": {
9
+ "dependency": [
10
+ {
11
+ "comment": "Updating dependency \"@rushstack/ts-command-line\" to `5.2.0`"
12
+ },
13
+ {
14
+ "comment": "Updating dependency \"@rushstack/heft-webpack5-plugin\" to `1.2.12`"
15
+ },
16
+ {
17
+ "comment": "Updating dependency \"@rushstack/heft\" to `1.1.12`"
18
+ },
19
+ {
20
+ "comment": "Updating dependency \"@rushstack/webpack-preserve-dynamic-require-plugin\" to `0.11.123`"
21
+ }
22
+ ]
23
+ }
24
+ },
25
+ {
26
+ "version": "0.11.13",
27
+ "tag": "@rushstack/package-extractor_v0.11.13",
28
+ "date": "Fri, 30 Jan 2026 01:16:13 GMT",
29
+ "comments": {
30
+ "dependency": [
31
+ {
32
+ "comment": "Updating dependency \"@rushstack/heft-webpack5-plugin\" to `1.2.11`"
33
+ },
34
+ {
35
+ "comment": "Updating dependency \"@rushstack/heft\" to `1.1.11`"
36
+ },
37
+ {
38
+ "comment": "Updating dependency \"@rushstack/webpack-preserve-dynamic-require-plugin\" to `0.11.122`"
39
+ }
40
+ ]
41
+ }
42
+ },
4
43
  {
5
44
  "version": "0.11.12",
6
45
  "tag": "@rushstack/package-extractor_v0.11.12",
package/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  # Change Log - @rushstack/package-extractor
2
2
 
3
- This log was last generated on Tue, 27 Jan 2026 16:13:30 GMT and should not be manually modified.
3
+ This log was last generated on Wed, 04 Feb 2026 16:13:27 GMT and should not be manually modified.
4
+
5
+ ## 0.11.14
6
+ Wed, 04 Feb 2026 16:13:27 GMT
7
+
8
+ _Version update only_
9
+
10
+ ## 0.11.13
11
+ Fri, 30 Jan 2026 01:16:13 GMT
12
+
13
+ _Version update only_
4
14
 
5
15
  ## 0.11.12
6
16
  Tue, 27 Jan 2026 16:13:30 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 abstract base classes CommandLineParser and CommandLineAction
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._actions;
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._actions) {
29650
+ for (const action of this._actionsByName.values()) {
29653
29651
  action._registerDefinedParameters(parentState);
29654
29652
  }
29655
29653
  }