@jsenv/core 39.5.8 → 39.5.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/dist/jsenv_core.js +2 -2
- package/package.json +2 -2
package/dist/jsenv_core.js
CHANGED
|
@@ -4112,7 +4112,7 @@ const registerDirectoryLifecycle = (
|
|
|
4112
4112
|
const directoryUrlObject = new URL(directoryUrl);
|
|
4113
4113
|
entryNameArray = readdirSync(directoryUrlObject);
|
|
4114
4114
|
} catch (e) {
|
|
4115
|
-
if (e.code === "ENOENT") {
|
|
4115
|
+
if (e.code === "ENOENT" || e.code === "EACCES") {
|
|
4116
4116
|
return;
|
|
4117
4117
|
}
|
|
4118
4118
|
throw e;
|
|
@@ -4144,7 +4144,7 @@ const registerDirectoryLifecycle = (
|
|
|
4144
4144
|
});
|
|
4145
4145
|
});
|
|
4146
4146
|
} catch (e) {
|
|
4147
|
-
if (e.code === "ENOENT") {
|
|
4147
|
+
if (e.code === "ENOENT" || e.code === "EACCES") {
|
|
4148
4148
|
return;
|
|
4149
4149
|
}
|
|
4150
4150
|
throw e;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsenv/core",
|
|
3
|
-
"version": "39.5.
|
|
3
|
+
"version": "39.5.9",
|
|
4
4
|
"description": "Tool to develop, test and build js projects",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"@financial-times/polyfill-useragent-normaliser": "1.10.2",
|
|
71
71
|
"@jsenv/abort": "4.3.0",
|
|
72
72
|
"@jsenv/ast": "6.2.17",
|
|
73
|
-
"@jsenv/filesystem": "4.10.
|
|
73
|
+
"@jsenv/filesystem": "4.10.9",
|
|
74
74
|
"@jsenv/humanize": "1.2.8",
|
|
75
75
|
"@jsenv/importmap": "1.2.1",
|
|
76
76
|
"@jsenv/integrity": "0.0.2",
|