@rushstack/package-extractor 0.11.1 → 0.11.3
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 +39 -0
- package/CHANGELOG.md +11 -1
- package/dist/scripts/create-links.js +23 -14
- package/dist/scripts/create-links.js.map +1 -1
- package/dist/tsdoc-metadata.json +1 -1
- package/package.json +8 -8
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,45 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/package-extractor",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.11.3",
|
|
6
|
+
"tag": "@rushstack/package-extractor_v0.11.3",
|
|
7
|
+
"date": "Wed, 22 Oct 2025 00:57:54 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"dependency": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Updating dependency \"@rushstack/node-core-library\" to `5.17.1`"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"comment": "Updating dependency \"@rushstack/terminal\" to `0.19.2`"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"comment": "Updating dependency \"@rushstack/ts-command-line\" to `5.1.2`"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"comment": "Updating dependency \"@rushstack/heft-webpack5-plugin\" to `1.2.2`"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"comment": "Updating dependency \"@rushstack/heft\" to `1.1.2`"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"comment": "Updating dependency \"@rushstack/webpack-preserve-dynamic-require-plugin\" to `0.11.113`"
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"version": "0.11.2",
|
|
33
|
+
"tag": "@rushstack/package-extractor_v0.11.2",
|
|
34
|
+
"date": "Fri, 17 Oct 2025 23:22:33 GMT",
|
|
35
|
+
"comments": {
|
|
36
|
+
"dependency": [
|
|
37
|
+
{
|
|
38
|
+
"comment": "Updating dependency \"@rushstack/heft-webpack5-plugin\" to `1.2.1`"
|
|
39
|
+
}
|
|
40
|
+
]
|
|
41
|
+
}
|
|
42
|
+
},
|
|
4
43
|
{
|
|
5
44
|
"version": "0.11.1",
|
|
6
45
|
"tag": "@rushstack/package-extractor_v0.11.1",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
# Change Log - @rushstack/package-extractor
|
|
2
2
|
|
|
3
|
-
This log was last generated on Wed,
|
|
3
|
+
This log was last generated on Wed, 22 Oct 2025 00:57:54 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 0.11.3
|
|
6
|
+
Wed, 22 Oct 2025 00:57:54 GMT
|
|
7
|
+
|
|
8
|
+
_Version update only_
|
|
9
|
+
|
|
10
|
+
## 0.11.2
|
|
11
|
+
Fri, 17 Oct 2025 23:22:33 GMT
|
|
12
|
+
|
|
13
|
+
_Version update only_
|
|
4
14
|
|
|
5
15
|
## 0.11.1
|
|
6
16
|
Wed, 08 Oct 2025 00:13:28 GMT
|
|
@@ -49094,22 +49094,31 @@ class Executable {
|
|
|
49094
49094
|
}
|
|
49095
49095
|
});
|
|
49096
49096
|
});
|
|
49097
|
-
let
|
|
49098
|
-
|
|
49099
|
-
|
|
49100
|
-
|
|
49101
|
-
|
|
49097
|
+
let result;
|
|
49098
|
+
if (encoding) {
|
|
49099
|
+
let stdout;
|
|
49100
|
+
let stderr;
|
|
49101
|
+
if (encoding === 'buffer') {
|
|
49102
|
+
stdout = Buffer.concat(collectedStdout);
|
|
49103
|
+
stderr = Buffer.concat(collectedStderr);
|
|
49104
|
+
}
|
|
49105
|
+
else if (encoding !== undefined) {
|
|
49106
|
+
stdout = collectedStdout.join('');
|
|
49107
|
+
stderr = collectedStderr.join('');
|
|
49108
|
+
}
|
|
49109
|
+
result = {
|
|
49110
|
+
stdout: stdout,
|
|
49111
|
+
stderr: stderr,
|
|
49112
|
+
exitCode,
|
|
49113
|
+
signal
|
|
49114
|
+
};
|
|
49102
49115
|
}
|
|
49103
|
-
else
|
|
49104
|
-
|
|
49105
|
-
|
|
49116
|
+
else {
|
|
49117
|
+
result = {
|
|
49118
|
+
exitCode,
|
|
49119
|
+
signal
|
|
49120
|
+
};
|
|
49106
49121
|
}
|
|
49107
|
-
const result = {
|
|
49108
|
-
stdout: stdout,
|
|
49109
|
-
stderr: stderr,
|
|
49110
|
-
exitCode,
|
|
49111
|
-
signal
|
|
49112
|
-
};
|
|
49113
49122
|
return result;
|
|
49114
49123
|
}
|
|
49115
49124
|
/**
|