@rushstack/package-extractor 0.10.26 → 0.10.27
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 +2 -1
- package/dist/scripts/create-links.js.map +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.10.27",
|
|
6
|
+
"tag": "@rushstack/package-extractor_v0.10.27",
|
|
7
|
+
"date": "Thu, 01 May 2025 00:11:12 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"dependency": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Updating dependency \"@rushstack/node-core-library\" to `5.13.1`"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"comment": "Updating dependency \"@rushstack/terminal\" to `0.15.3`"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"comment": "Updating dependency \"@rushstack/ts-command-line\" to `5.0.1`"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"comment": "Updating dependency \"@rushstack/heft-webpack5-plugin\" to `0.11.31`"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"comment": "Updating dependency \"@rushstack/heft\" to `0.73.4`"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"comment": "Updating dependency \"@rushstack/webpack-preserve-dynamic-require-plugin\" to `0.11.100`"
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
},
|
|
4
31
|
{
|
|
5
32
|
"version": "0.10.26",
|
|
6
33
|
"tag": "@rushstack/package-extractor_v0.10.26",
|
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 Thu, 01 May 2025 00:11:12 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 0.10.27
|
|
6
|
+
Thu, 01 May 2025 00:11:12 GMT
|
|
7
|
+
|
|
8
|
+
_Version update only_
|
|
4
9
|
|
|
5
10
|
## 0.10.26
|
|
6
11
|
Fri, 25 Apr 2025 00:11:32 GMT
|
|
@@ -43721,9 +43721,10 @@ class FileSystem {
|
|
|
43721
43721
|
*/
|
|
43722
43722
|
static isErrnoException(error) {
|
|
43723
43723
|
const typedError = error;
|
|
43724
|
+
// Don't check for `path` because the syscall may not have a path.
|
|
43725
|
+
// For example, when invoked with a file descriptor.
|
|
43724
43726
|
return (typeof typedError.code === 'string' &&
|
|
43725
43727
|
typeof typedError.errno === 'number' &&
|
|
43726
|
-
typeof typedError.path === 'string' &&
|
|
43727
43728
|
typeof typedError.syscall === 'string');
|
|
43728
43729
|
}
|
|
43729
43730
|
static _handleLink(linkFn, options) {
|