@rushstack/package-extractor 0.13.8 → 0.13.9
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 +27 -0
- package/CHANGELOG.md +6 -1
- package/dist/scripts/create-links.js +8 -15
- 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,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/package-extractor",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.13.9",
|
|
6
|
+
"tag": "@rushstack/package-extractor_v0.13.9",
|
|
7
|
+
"date": "Fri, 17 Jul 2026 00:16:00 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"dependency": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Updating dependency \"@rushstack/node-core-library\" to `5.23.3`"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"comment": "Updating dependency \"@rushstack/terminal\" to `0.24.2`"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"comment": "Updating dependency \"@rushstack/ts-command-line\" to `5.3.12`"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"comment": "Updating dependency \"@rushstack/heft-webpack5-plugin\" to `1.3.22`"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"comment": "Updating dependency \"@rushstack/heft\" to `1.2.21`"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"comment": "Updating dependency \"@rushstack/webpack-preserve-dynamic-require-plugin\" to `0.12.22`"
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
},
|
|
4
31
|
{
|
|
5
32
|
"version": "0.13.8",
|
|
6
33
|
"tag": "@rushstack/package-extractor_v0.13.8",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
# Change Log - @rushstack/package-extractor
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Fri, 17 Jul 2026 00:16:00 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 0.13.9
|
|
6
|
+
Fri, 17 Jul 2026 00:16:00 GMT
|
|
7
|
+
|
|
8
|
+
_Version update only_
|
|
4
9
|
|
|
5
10
|
## 0.13.8
|
|
6
11
|
Thu, 16 Jul 2026 00:16:13 GMT
|
|
@@ -55900,8 +55900,6 @@ class FileError extends Error {
|
|
|
55900
55900
|
}
|
|
55901
55901
|
/**
|
|
55902
55902
|
* Get the Unix-formatted the error message.
|
|
55903
|
-
*
|
|
55904
|
-
* @override
|
|
55905
55903
|
*/
|
|
55906
55904
|
toString() {
|
|
55907
55905
|
// Default to formatting in 'Unix' format, for consistency.
|
|
@@ -57899,7 +57897,6 @@ class InternalError extends Error {
|
|
|
57899
57897
|
return (`Internal Error: ${unformattedMessage}\n\nYou have encountered a software defect. Please consider` +
|
|
57900
57898
|
` reporting the issue to the maintainers of this application.`);
|
|
57901
57899
|
}
|
|
57902
|
-
/** @override */
|
|
57903
57900
|
toString() {
|
|
57904
57901
|
return this.message; // Avoid adding the "Error:" prefix
|
|
57905
57902
|
}
|
|
@@ -63132,15 +63129,12 @@ class PrefixProxyTerminalProvider {
|
|
|
63132
63129
|
this._isOnNewline = true;
|
|
63133
63130
|
this._newlineRegex = new RegExp(`${node_core_library_1.Text.escapeRegExp(terminalProvider.eolCharacter)}|\\n`, 'g');
|
|
63134
63131
|
}
|
|
63135
|
-
/** @override */
|
|
63136
63132
|
get supportsColor() {
|
|
63137
63133
|
return this._parentTerminalProvider.supportsColor;
|
|
63138
63134
|
}
|
|
63139
|
-
/** @override */
|
|
63140
63135
|
get eolCharacter() {
|
|
63141
63136
|
return this._parentTerminalProvider.eolCharacter;
|
|
63142
63137
|
}
|
|
63143
|
-
/** @override */
|
|
63144
63138
|
write(data, severity) {
|
|
63145
63139
|
// We need to track newlines to ensure that the prefix is added to each line
|
|
63146
63140
|
let currentIndex = 0;
|
|
@@ -64550,7 +64544,6 @@ class TerminalTransform extends TerminalWritable_1.TerminalWritable {
|
|
|
64550
64544
|
this.destination = options.destination;
|
|
64551
64545
|
this.preventDestinationAutoclose = !!options.preventDestinationAutoclose;
|
|
64552
64546
|
}
|
|
64553
|
-
/** @override */
|
|
64554
64547
|
onClose() {
|
|
64555
64548
|
this.autocloseDestination();
|
|
64556
64549
|
}
|
|
@@ -65384,7 +65377,7 @@ class CommandLineChoiceListParameter extends BaseClasses_1.CommandLineParameterB
|
|
|
65384
65377
|
get values() {
|
|
65385
65378
|
return this._values;
|
|
65386
65379
|
}
|
|
65387
|
-
/** {@inheritDoc CommandLineParameterBase.appendToArgList}
|
|
65380
|
+
/** {@inheritDoc CommandLineParameterBase.appendToArgList} */
|
|
65388
65381
|
appendToArgList(argList) {
|
|
65389
65382
|
if (this.values.length > 0) {
|
|
65390
65383
|
for (const value of this.values) {
|
|
@@ -65490,7 +65483,7 @@ class CommandLineChoiceParameter extends BaseClasses_1.CommandLineParameterBase
|
|
|
65490
65483
|
get value() {
|
|
65491
65484
|
return this._value;
|
|
65492
65485
|
}
|
|
65493
|
-
/** {@inheritDoc CommandLineParameterBase.appendToArgList}
|
|
65486
|
+
/** {@inheritDoc CommandLineParameterBase.appendToArgList} */
|
|
65494
65487
|
appendToArgList(argList) {
|
|
65495
65488
|
if (this.value !== undefined) {
|
|
65496
65489
|
argList.push(this.longName);
|
|
@@ -65570,7 +65563,7 @@ class CommandLineFlagParameter extends BaseClasses_1.CommandLineParameterBase {
|
|
|
65570
65563
|
get value() {
|
|
65571
65564
|
return this._value;
|
|
65572
65565
|
}
|
|
65573
|
-
/** {@inheritDoc CommandLineParameterBase.appendToArgList}
|
|
65566
|
+
/** {@inheritDoc CommandLineParameterBase.appendToArgList} */
|
|
65574
65567
|
appendToArgList(argList) {
|
|
65575
65568
|
if (this.value) {
|
|
65576
65569
|
argList.push(this.longName);
|
|
@@ -65656,7 +65649,7 @@ class CommandLineIntegerListParameter extends BaseClasses_1.CommandLineParameter
|
|
|
65656
65649
|
get values() {
|
|
65657
65650
|
return this._values;
|
|
65658
65651
|
}
|
|
65659
|
-
/** {@inheritDoc CommandLineParameterBase.appendToArgList}
|
|
65652
|
+
/** {@inheritDoc CommandLineParameterBase.appendToArgList} */
|
|
65660
65653
|
appendToArgList(argList) {
|
|
65661
65654
|
if (this.values.length > 0) {
|
|
65662
65655
|
for (const value of this.values) {
|
|
@@ -65751,7 +65744,7 @@ class CommandLineIntegerParameter extends BaseClasses_1.CommandLineParameterWith
|
|
|
65751
65744
|
get value() {
|
|
65752
65745
|
return this._value;
|
|
65753
65746
|
}
|
|
65754
|
-
/** {@inheritDoc CommandLineParameterBase.appendToArgList}
|
|
65747
|
+
/** {@inheritDoc CommandLineParameterBase.appendToArgList} */
|
|
65755
65748
|
appendToArgList(argList) {
|
|
65756
65749
|
if (this.value !== undefined) {
|
|
65757
65750
|
argList.push(this.longName);
|
|
@@ -65807,7 +65800,7 @@ class CommandLineRemainder {
|
|
|
65807
65800
|
}
|
|
65808
65801
|
this._values.push(...data);
|
|
65809
65802
|
}
|
|
65810
|
-
/** {@inheritDoc CommandLineParameterBase.appendToArgList}
|
|
65803
|
+
/** {@inheritDoc CommandLineParameterBase.appendToArgList} */
|
|
65811
65804
|
appendToArgList(argList) {
|
|
65812
65805
|
if (this.values.length > 0) {
|
|
65813
65806
|
for (const value of this.values) {
|
|
@@ -65886,7 +65879,7 @@ class CommandLineStringListParameter extends BaseClasses_1.CommandLineParameterW
|
|
|
65886
65879
|
get values() {
|
|
65887
65880
|
return this._values;
|
|
65888
65881
|
}
|
|
65889
|
-
/** {@inheritDoc CommandLineParameterBase.appendToArgList}
|
|
65882
|
+
/** {@inheritDoc CommandLineParameterBase.appendToArgList} */
|
|
65890
65883
|
appendToArgList(argList) {
|
|
65891
65884
|
if (this.values.length > 0) {
|
|
65892
65885
|
for (const value of this.values) {
|
|
@@ -65980,7 +65973,7 @@ class CommandLineStringParameter extends BaseClasses_1.CommandLineParameterWithA
|
|
|
65980
65973
|
get value() {
|
|
65981
65974
|
return this._value;
|
|
65982
65975
|
}
|
|
65983
|
-
/** {@inheritDoc CommandLineParameterBase.appendToArgList}
|
|
65976
|
+
/** {@inheritDoc CommandLineParameterBase.appendToArgList} */
|
|
65984
65977
|
appendToArgList(argList) {
|
|
65985
65978
|
if (this.value !== undefined) {
|
|
65986
65979
|
argList.push(this.longName);
|