@jsenv/js-module-fallback 1.3.10 → 1.3.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.
|
@@ -3985,9 +3985,9 @@ const convertJsModuleToJsClassic = async ({
|
|
|
3985
3985
|
babelPlugins: [
|
|
3986
3986
|
...(outputFormat === "system"
|
|
3987
3987
|
? [
|
|
3988
|
-
//
|
|
3988
|
+
// transform-dynamic-import required with systemjs for babel8:
|
|
3989
3989
|
// https://github.com/babel/babel/issues/10746
|
|
3990
|
-
require("@babel/plugin-
|
|
3990
|
+
require("@babel/plugin-transform-dynamic-import"),
|
|
3991
3991
|
[
|
|
3992
3992
|
babelPluginTransformImportSpecifiers,
|
|
3993
3993
|
{ transformImportSpecifier },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsenv/js-module-fallback",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.12",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -27,13 +27,13 @@
|
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@babel/parser": "7.23.6",
|
|
30
|
-
"@babel/plugin-
|
|
30
|
+
"@babel/plugin-transform-dynamic-import": "7.23.4",
|
|
31
31
|
"@babel/plugin-transform-modules-umd": "7.23.3",
|
|
32
32
|
"@babel/plugin-transform-modules-systemjs": "7.23.3",
|
|
33
33
|
"babel-plugin-transform-async-to-promises": "0.8.18",
|
|
34
|
-
"@jsenv/ast": "6.0.
|
|
35
|
-
"@jsenv/sourcemap": "1.2.
|
|
36
|
-
"@jsenv/urls": "2.2.
|
|
34
|
+
"@jsenv/ast": "6.0.3",
|
|
35
|
+
"@jsenv/sourcemap": "1.2.6",
|
|
36
|
+
"@jsenv/urls": "2.2.3"
|
|
37
37
|
},
|
|
38
38
|
"scripts": {
|
|
39
39
|
"eslint": "npx eslint . --ext=.js,.mjs,.cjs,.html",
|
|
@@ -60,9 +60,9 @@ export const convertJsModuleToJsClassic = async ({
|
|
|
60
60
|
babelPlugins: [
|
|
61
61
|
...(outputFormat === "system"
|
|
62
62
|
? [
|
|
63
|
-
//
|
|
63
|
+
// transform-dynamic-import required with systemjs for babel8:
|
|
64
64
|
// https://github.com/babel/babel/issues/10746
|
|
65
|
-
require("@babel/plugin-
|
|
65
|
+
require("@babel/plugin-transform-dynamic-import"),
|
|
66
66
|
[
|
|
67
67
|
babelPluginTransformImportSpecifiers,
|
|
68
68
|
{ transformImportSpecifier },
|