@jsenv/js-module-fallback 1.3.9 → 1.3.11

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
- // proposal-dynamic-import required with systemjs for babel8:
3988
+ // transform-dynamic-import required with systemjs for babel8:
3989
3989
  // https://github.com/babel/babel/issues/10746
3990
- require("@babel/plugin-proposal-dynamic-import"),
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.9",
3
+ "version": "1.3.11",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -26,14 +26,14 @@
26
26
  "/dist/"
27
27
  ],
28
28
  "dependencies": {
29
- "@babel/parser": "7.23.3",
30
- "@babel/plugin-proposal-dynamic-import": "7.18.6",
29
+ "@babel/parser": "7.23.6",
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.1",
35
- "@jsenv/sourcemap": "1.2.4",
36
- "@jsenv/urls": "2.2.1"
34
+ "@jsenv/ast": "6.0.2",
35
+ "@jsenv/sourcemap": "1.2.5",
36
+ "@jsenv/urls": "2.2.2"
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
- // proposal-dynamic-import required with systemjs for babel8:
63
+ // transform-dynamic-import required with systemjs for babel8:
64
64
  // https://github.com/babel/babel/issues/10746
65
- require("@babel/plugin-proposal-dynamic-import"),
65
+ require("@babel/plugin-transform-dynamic-import"),
66
66
  [
67
67
  babelPluginTransformImportSpecifiers,
68
68
  { transformImportSpecifier },