@jsenv/core 39.3.4 → 39.3.5
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 +4 -0
- package/package.json +2 -2
package/dist/jsenv_core.js
CHANGED
|
@@ -17489,6 +17489,10 @@ const applyPackageSpecifierResolution = (specifier, resolutionContext) => {
|
|
|
17489
17489
|
return browserFieldResolution;
|
|
17490
17490
|
}
|
|
17491
17491
|
const packageResolution = applyPackageResolve(specifier, resolutionContext);
|
|
17492
|
+
const search = new URL(specifier, "file:///").search;
|
|
17493
|
+
if (search && !new URL(packageResolution.url).search) {
|
|
17494
|
+
packageResolution.url = `${packageResolution.url}${search}`;
|
|
17495
|
+
}
|
|
17492
17496
|
return packageResolution;
|
|
17493
17497
|
}
|
|
17494
17498
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsenv/core",
|
|
3
|
-
"version": "39.3.
|
|
3
|
+
"version": "39.3.5",
|
|
4
4
|
"description": "Tool to develop, test and build js projects",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"@jsenv/importmap": "1.2.1",
|
|
75
75
|
"@jsenv/integrity": "0.0.2",
|
|
76
76
|
"@jsenv/js-module-fallback": "1.3.37",
|
|
77
|
-
"@jsenv/node-esm-resolution": "1.0.
|
|
77
|
+
"@jsenv/node-esm-resolution": "1.0.5",
|
|
78
78
|
"@jsenv/plugin-bundling": "2.7.7",
|
|
79
79
|
"@jsenv/plugin-minification": "1.5.5",
|
|
80
80
|
"@jsenv/plugin-supervisor": "1.5.18",
|