@jsenv/core 39.5.10 → 39.5.12

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.
Files changed (2) hide show
  1. package/dist/jsenv_core.js +12 -2
  2. package/package.json +10 -10
@@ -4111,7 +4111,12 @@ const registerDirectoryLifecycle = (
4111
4111
  const directoryUrlObject = new URL(directoryUrl);
4112
4112
  entryNameArray = readdirSync(directoryUrlObject);
4113
4113
  } catch (e) {
4114
- if (e.code === "ENOENT" || e.code === "EACCES") {
4114
+ if (
4115
+ e.code === "ENOENT" ||
4116
+ e.code === "EACCES" ||
4117
+ e.code === "EPERM" ||
4118
+ e.code === "ENOTDIR"
4119
+ ) {
4115
4120
  return;
4116
4121
  }
4117
4122
  throw e;
@@ -4143,7 +4148,12 @@ const registerDirectoryLifecycle = (
4143
4148
  });
4144
4149
  });
4145
4150
  } catch (e) {
4146
- if (e.code === "ENOENT" || e.code === "EACCES") {
4151
+ if (
4152
+ e.code === "ENOENT" ||
4153
+ e.code === "EACCES" ||
4154
+ e.code === "EPERM" ||
4155
+ e.code === "ENOTDIR"
4156
+ ) {
4147
4157
  return;
4148
4158
  }
4149
4159
  throw e;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/core",
3
- "version": "39.5.10",
3
+ "version": "39.5.12",
4
4
  "description": "Tool to develop, test and build js projects",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -69,17 +69,17 @@
69
69
  "dependencies": {
70
70
  "@financial-times/polyfill-useragent-normaliser": "1.10.2",
71
71
  "@jsenv/abort": "4.3.0",
72
- "@jsenv/ast": "6.2.17",
73
- "@jsenv/filesystem": "4.10.10",
72
+ "@jsenv/ast": "6.2.18",
73
+ "@jsenv/filesystem": "4.10.11",
74
74
  "@jsenv/humanize": "1.2.8",
75
75
  "@jsenv/importmap": "1.2.1",
76
76
  "@jsenv/integrity": "0.0.2",
77
- "@jsenv/js-module-fallback": "1.3.38",
77
+ "@jsenv/js-module-fallback": "1.3.39",
78
78
  "@jsenv/node-esm-resolution": "1.0.6",
79
- "@jsenv/plugin-bundling": "2.7.9",
79
+ "@jsenv/plugin-bundling": "2.7.10",
80
80
  "@jsenv/plugin-minification": "1.5.6",
81
- "@jsenv/plugin-supervisor": "1.5.19",
82
- "@jsenv/plugin-transpilation": "1.4.22",
81
+ "@jsenv/plugin-supervisor": "1.5.20",
82
+ "@jsenv/plugin-transpilation": "1.4.23",
83
83
  "@jsenv/runtime-compat": "1.3.1",
84
84
  "@jsenv/server": "15.3.1",
85
85
  "@jsenv/sourcemap": "1.2.23",
@@ -90,7 +90,7 @@
90
90
  "anchor-markdown-header": "0.7.0"
91
91
  },
92
92
  "devDependencies": {
93
- "@babel/plugin-syntax-import-attributes": "7.24.7",
93
+ "@babel/plugin-syntax-import-attributes": "7.25.6",
94
94
  "@babel/plugin-syntax-optional-chaining-assign": "7.24.7",
95
95
  "@eslint/compat": "1.1.1",
96
96
  "@jsenv/assert": "workspace:*",
@@ -108,8 +108,8 @@
108
108
  "@playwright/browser-firefox": "1.46.1",
109
109
  "@playwright/browser-webkit": "1.46.1",
110
110
  "babel-plugin-transform-async-to-promises": "0.8.18",
111
- "eslint": "9.9.0",
112
- "marked": "14.0.0",
111
+ "eslint": "9.9.1",
112
+ "marked": "14.1.0",
113
113
  "open": "10.1.0",
114
114
  "playwright": "1.46.1",
115
115
  "prettier": "3.3.3",