@jsenv/js-module-fallback 1.4.12 → 1.4.14
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.
|
@@ -4021,7 +4021,7 @@ const convertJsModuleToJsClassic = async ({
|
|
|
4021
4021
|
inputUrl,
|
|
4022
4022
|
outputUrl,
|
|
4023
4023
|
});
|
|
4024
|
-
const sourcemap =
|
|
4024
|
+
const sourcemap = composeTwoSourcemaps(inputSourcemap, map);
|
|
4025
4025
|
return {
|
|
4026
4026
|
content: code,
|
|
4027
4027
|
sourcemap,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsenv/js-module-fallback",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.14",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@babel/plugin-transform-modules-umd": "7.25.9",
|
|
40
40
|
"@babel/plugin-transform-modules-systemjs": "7.25.9",
|
|
41
41
|
"babel-plugin-transform-async-to-promises": "0.8.18",
|
|
42
|
-
"@jsenv/ast": "6.7.
|
|
42
|
+
"@jsenv/ast": "6.7.3",
|
|
43
43
|
"@jsenv/sourcemap": "1.3.8",
|
|
44
44
|
"@jsenv/urls": "2.8.0"
|
|
45
45
|
},
|
|
@@ -97,7 +97,7 @@ export const convertJsModuleToJsClassic = async ({
|
|
|
97
97
|
inputUrl,
|
|
98
98
|
outputUrl,
|
|
99
99
|
});
|
|
100
|
-
const sourcemap =
|
|
100
|
+
const sourcemap = composeTwoSourcemaps(inputSourcemap, map);
|
|
101
101
|
return {
|
|
102
102
|
content: code,
|
|
103
103
|
sourcemap,
|