@rushstack/package-extractor 0.13.6 → 0.13.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,27 @@
1
1
  {
2
2
  "name": "@rushstack/package-extractor",
3
3
  "entries": [
4
+ {
5
+ "version": "0.13.7",
6
+ "tag": "@rushstack/package-extractor_v0.13.7",
7
+ "date": "Sat, 13 Jun 2026 00:16:19 GMT",
8
+ "comments": {
9
+ "dependency": [
10
+ {
11
+ "comment": "Updating dependency \"@rushstack/ts-command-line\" to `5.3.10`"
12
+ },
13
+ {
14
+ "comment": "Updating dependency \"@rushstack/heft-webpack5-plugin\" to `1.3.20`"
15
+ },
16
+ {
17
+ "comment": "Updating dependency \"@rushstack/heft\" to `1.2.19`"
18
+ },
19
+ {
20
+ "comment": "Updating dependency \"@rushstack/webpack-preserve-dynamic-require-plugin\" to `0.12.20`"
21
+ }
22
+ ]
23
+ }
24
+ },
4
25
  {
5
26
  "version": "0.13.6",
6
27
  "tag": "@rushstack/package-extractor_v0.13.6",
package/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  # Change Log - @rushstack/package-extractor
2
2
 
3
- This log was last generated on Mon, 08 Jun 2026 15:15:50 GMT and should not be manually modified.
3
+ This log was last generated on Sat, 13 Jun 2026 00:16:19 GMT and should not be manually modified.
4
+
5
+ ## 0.13.7
6
+ Sat, 13 Jun 2026 00:16:19 GMT
7
+
8
+ _Version update only_
4
9
 
5
10
  ## 0.13.6
6
11
  Mon, 08 Jun 2026 15:15:50 GMT
@@ -66029,13 +66029,13 @@ class EnvironmentVariableParser {
66029
66029
  const parsedJson = JSON.parse(environmentValue);
66030
66030
  if (!Array.isArray(parsedJson) ||
66031
66031
  !parsedJson.every((x) => typeof x === 'string' || typeof x === 'boolean' || typeof x === 'number')) {
66032
- throw new Error(`The ${environmentValue} environment variable value must be a JSON ` +
66032
+ throw new Error(`The ${envVarName} environment variable value must be a JSON ` +
66033
66033
  ` array containing only strings, numbers, and booleans.`);
66034
66034
  }
66035
66035
  return parsedJson.map((x) => x.toString());
66036
66036
  }
66037
66037
  catch (ex) {
66038
- throw new Error(`The ${environmentValue} environment variable value looks like a JSON array` +
66038
+ throw new Error(`The ${envVarName} environment variable value looks like a JSON array` +
66039
66039
  ` but failed to parse: ` +
66040
66040
  ex.message);
66041
66041
  }