@rushstack/package-extractor 0.10.5 → 0.10.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,51 @@
1
1
  {
2
2
  "name": "@rushstack/package-extractor",
3
3
  "entries": [
4
+ {
5
+ "version": "0.10.7",
6
+ "tag": "@rushstack/package-extractor_v0.10.7",
7
+ "date": "Thu, 09 Jan 2025 01:10:10 GMT",
8
+ "comments": {
9
+ "dependency": [
10
+ {
11
+ "comment": "Updating dependency \"@rushstack/node-core-library\" to `5.10.2`"
12
+ },
13
+ {
14
+ "comment": "Updating dependency \"@rushstack/terminal\" to `0.14.5`"
15
+ },
16
+ {
17
+ "comment": "Updating dependency \"@rushstack/ts-command-line\" to `4.23.3`"
18
+ },
19
+ {
20
+ "comment": "Updating dependency \"@rushstack/heft-webpack5-plugin\" to `0.11.11`"
21
+ },
22
+ {
23
+ "comment": "Updating dependency \"@rushstack/heft\" to `0.68.13`"
24
+ },
25
+ {
26
+ "comment": "Updating dependency \"@rushstack/webpack-preserve-dynamic-require-plugin\" to `0.11.80`"
27
+ }
28
+ ]
29
+ }
30
+ },
31
+ {
32
+ "version": "0.10.6",
33
+ "tag": "@rushstack/package-extractor_v0.10.6",
34
+ "date": "Tue, 07 Jan 2025 22:17:32 GMT",
35
+ "comments": {
36
+ "dependency": [
37
+ {
38
+ "comment": "Updating dependency \"@rushstack/heft-webpack5-plugin\" to `0.11.10`"
39
+ },
40
+ {
41
+ "comment": "Updating dependency \"@rushstack/heft\" to `0.68.12`"
42
+ },
43
+ {
44
+ "comment": "Updating dependency \"@rushstack/webpack-preserve-dynamic-require-plugin\" to `0.11.79`"
45
+ }
46
+ ]
47
+ }
48
+ },
4
49
  {
5
50
  "version": "0.10.5",
6
51
  "tag": "@rushstack/package-extractor_v0.10.5",
package/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  # Change Log - @rushstack/package-extractor
2
2
 
3
- This log was last generated on Sat, 14 Dec 2024 01:11:07 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 09 Jan 2025 01:10:10 GMT and should not be manually modified.
4
+
5
+ ## 0.10.7
6
+ Thu, 09 Jan 2025 01:10:10 GMT
7
+
8
+ _Version update only_
9
+
10
+ ## 0.10.6
11
+ Tue, 07 Jan 2025 22:17:32 GMT
12
+
13
+ _Version update only_
4
14
 
5
15
  ## 0.10.5
6
16
  Sat, 14 Dec 2024 01:11:07 GMT
@@ -58272,14 +58272,14 @@ class Async {
58272
58272
  * Executes an async function and optionally retries it if it fails.
58273
58273
  */
58274
58274
  static async runWithRetriesAsync({ action, maxRetries, retryDelayMs = 0 }) {
58275
- let retryCounter = 0;
58275
+ let retryCount = 0;
58276
58276
  // eslint-disable-next-line no-constant-condition
58277
58277
  while (true) {
58278
58278
  try {
58279
- return await action();
58279
+ return await action(retryCount);
58280
58280
  }
58281
58281
  catch (e) {
58282
- if (++retryCounter > maxRetries) {
58282
+ if (++retryCount > maxRetries) {
58283
58283
  throw e;
58284
58284
  }
58285
58285
  else if (retryDelayMs > 0) {