@jsenv/plugin-transpilation 1.5.20 → 1.5.50

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/plugin-transpilation",
3
- "version": "1.5.20",
3
+ "version": "1.5.50",
4
4
  "description": "TODO",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -25,39 +25,39 @@
25
25
  "./src/regenerator_runtime/client/regenerator_runtime.js"
26
26
  ],
27
27
  "dependencies": {
28
- "@babel/plugin-transform-json-strings": "7.25.9",
29
- "@babel/plugin-transform-numeric-separator": "7.25.9",
30
- "@babel/plugin-transform-object-rest-spread": "7.25.9",
31
- "@babel/plugin-transform-optional-catch-binding": "7.25.9",
32
- "@babel/plugin-transform-optional-chaining": "7.25.9",
33
- "@babel/plugin-transform-unicode-property-regex": "7.25.9",
34
- "@babel/plugin-syntax-import-assertions": "7.26.0",
28
+ "@babel/plugin-transform-json-strings": "7.27.1",
29
+ "@babel/plugin-transform-numeric-separator": "7.27.1",
30
+ "@babel/plugin-transform-object-rest-spread": "7.27.1",
31
+ "@babel/plugin-transform-optional-catch-binding": "7.27.1",
32
+ "@babel/plugin-transform-optional-chaining": "7.27.1",
33
+ "@babel/plugin-transform-unicode-property-regex": "7.27.1",
34
+ "@babel/plugin-syntax-import-assertions": "7.27.1",
35
35
  "@babel/plugin-syntax-object-rest-spread": "7.8.3",
36
36
  "@babel/plugin-syntax-optional-catch-binding": "7.8.3",
37
- "@babel/plugin-transform-arrow-functions": "7.25.9",
38
- "@babel/plugin-transform-block-scoped-functions": "7.26.5",
39
- "@babel/plugin-transform-block-scoping": "7.27.0",
40
- "@babel/plugin-transform-classes": "7.25.9",
41
- "@babel/plugin-transform-computed-properties": "7.25.9",
42
- "@babel/plugin-transform-destructuring": "7.25.9",
43
- "@babel/plugin-transform-dotall-regex": "7.25.9",
44
- "@babel/plugin-transform-duplicate-keys": "7.25.9",
45
- "@babel/plugin-transform-exponentiation-operator": "7.26.3",
46
- "@babel/plugin-transform-for-of": "7.26.9",
47
- "@babel/plugin-transform-function-name": "7.25.9",
48
- "@babel/plugin-transform-literals": "7.25.9",
49
- "@babel/plugin-transform-new-target": "7.25.9",
50
- "@babel/plugin-transform-object-super": "7.25.9",
51
- "@babel/plugin-transform-parameters": "7.25.9",
52
- "@babel/plugin-transform-regenerator": "7.27.0",
53
- "@babel/plugin-transform-shorthand-properties": "7.25.9",
54
- "@babel/plugin-transform-spread": "7.25.9",
55
- "@babel/plugin-transform-sticky-regex": "7.25.9",
56
- "@babel/plugin-transform-template-literals": "7.26.8",
57
- "@babel/plugin-transform-typeof-symbol": "7.27.0",
58
- "@babel/plugin-transform-unicode-regex": "7.25.9",
59
- "@jsenv/ast": "6.7.3",
60
- "@jsenv/js-module-fallback": "1.4.13",
37
+ "@babel/plugin-transform-arrow-functions": "7.27.1",
38
+ "@babel/plugin-transform-block-scoped-functions": "7.27.1",
39
+ "@babel/plugin-transform-block-scoping": "7.27.1",
40
+ "@babel/plugin-transform-classes": "7.27.1",
41
+ "@babel/plugin-transform-computed-properties": "7.27.1",
42
+ "@babel/plugin-transform-destructuring": "7.27.1",
43
+ "@babel/plugin-transform-dotall-regex": "7.27.1",
44
+ "@babel/plugin-transform-duplicate-keys": "7.27.1",
45
+ "@babel/plugin-transform-exponentiation-operator": "7.27.1",
46
+ "@babel/plugin-transform-for-of": "7.27.1",
47
+ "@babel/plugin-transform-function-name": "7.27.1",
48
+ "@babel/plugin-transform-literals": "7.27.1",
49
+ "@babel/plugin-transform-new-target": "7.27.1",
50
+ "@babel/plugin-transform-object-super": "7.27.1",
51
+ "@babel/plugin-transform-parameters": "7.27.1",
52
+ "@babel/plugin-transform-regenerator": "7.27.1",
53
+ "@babel/plugin-transform-shorthand-properties": "7.27.1",
54
+ "@babel/plugin-transform-spread": "7.27.1",
55
+ "@babel/plugin-transform-sticky-regex": "7.27.1",
56
+ "@babel/plugin-transform-template-literals": "7.27.1",
57
+ "@babel/plugin-transform-typeof-symbol": "7.27.1",
58
+ "@babel/plugin-transform-unicode-regex": "7.27.1",
59
+ "@jsenv/ast": "6.7.6",
60
+ "@jsenv/js-module-fallback": "1.4.18",
61
61
  "babel-plugin-transform-async-to-promises": "0.8.18",
62
62
  "construct-style-sheets-polyfill": "3.1.0",
63
63
  "lightningcss": "1.29.3"
@@ -15,7 +15,7 @@ export const convertJsClassicToJsModule = async ({
15
15
  inputUrl,
16
16
  outputUrl,
17
17
  });
18
- const sourcemap = await composeTwoSourcemaps(inputSourcemap, map);
18
+ const sourcemap = composeTwoSourcemaps(inputSourcemap, map);
19
19
  return {
20
20
  content: code,
21
21
  sourcemap,