@atlaspack/transformer-babel 2.14.18 → 2.14.20

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/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @atlaspack/transformer-babel
2
2
 
3
+ ## 2.14.20
4
+
5
+ ### Patch Changes
6
+
7
+ - [#702](https://github.com/atlassian-labs/atlaspack/pull/702) [`daaa768`](https://github.com/atlassian-labs/atlaspack/commit/daaa7688786772d7e3713b71c5bba6b89ec704aa) Thanks [@alshdavid](https://github.com/alshdavid)! - Fixes to Flow types
8
+
9
+ - Updated dependencies [[`daaa768`](https://github.com/atlassian-labs/atlaspack/commit/daaa7688786772d7e3713b71c5bba6b89ec704aa)]:
10
+ - @atlaspack/plugin@2.14.20
11
+ - @atlaspack/utils@2.17.2
12
+
13
+ ## 2.14.19
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies []:
18
+ - @atlaspack/utils@2.17.1
19
+ - @atlaspack/plugin@2.14.19
20
+
3
21
  ## 2.14.18
4
22
 
5
23
  ### Patch Changes
@@ -57,6 +57,7 @@ var _default = exports.default = new (_plugin().Transformer)({
57
57
  tracer
58
58
  }) {
59
59
  try {
60
+ // $FlowFixMe
60
61
  if (config !== null && config !== void 0 && config.config) {
61
62
  if (asset.meta.babelPlugins != null && Array.isArray(asset.meta.babelPlugins)) {
62
63
  await (0, _babel.default)({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/transformer-babel",
3
- "version": "2.14.18",
3
+ "version": "2.14.20",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -16,9 +16,9 @@
16
16
  },
17
17
  "dependencies": {
18
18
  "@atlaspack/diagnostic": "2.14.1",
19
- "@atlaspack/plugin": "2.14.18",
19
+ "@atlaspack/plugin": "2.14.20",
20
20
  "@parcel/source-map": "^2.1.1",
21
- "@atlaspack/utils": "2.17.0",
21
+ "@atlaspack/utils": "2.17.2",
22
22
  "browserslist": "^4.6.6",
23
23
  "json5": "^2.2.0",
24
24
  "nullthrows": "^1.1.1",
@@ -28,7 +28,7 @@
28
28
  "@babel/core": "^7.22.11",
29
29
  "@babel/preset-env": "^7.22.14",
30
30
  "@babel/types": "^7.22.11",
31
- "@atlaspack/types": "2.15.8"
31
+ "@atlaspack/types": "2.15.10"
32
32
  },
33
33
  "type": "commonjs"
34
34
  }
@@ -19,6 +19,7 @@ export default (new Transformer({
19
19
 
20
20
  async transform({asset, config, logger, options, tracer}) {
21
21
  try {
22
+ // $FlowFixMe
22
23
  if (config?.config) {
23
24
  if (
24
25
  asset.meta.babelPlugins != null &&
@@ -99,4 +100,4 @@ export default (new Transformer({
99
100
  map,
100
101
  };
101
102
  },
102
- }): Transformer);
103
+ }): Transformer<mixed>);