@atlaspack/babel-preset-env 2.14.1-canary.40 → 2.14.1-canary.401

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/babel-preset-env
2
2
 
3
+ ## 2.14.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#785](https://github.com/atlassian-labs/atlaspack/pull/785) [`0e7dd5e`](https://github.com/atlassian-labs/atlaspack/commit/0e7dd5ec6fbe05aa9e0bb5775a9d0975f206a922) Thanks [@matt-koko](https://github.com/matt-koko)! - We need to re-publish every package in Atlaspack with the corrected types field.
8
+
9
+ ## 2.14.3
10
+
11
+ ### Patch Changes
12
+
13
+ - [#742](https://github.com/atlassian-labs/atlaspack/pull/742) [`ee040bb`](https://github.com/atlassian-labs/atlaspack/commit/ee040bb6428f29b57d892ddd8107e29077d08ffd) Thanks [@yamadapc](https://github.com/yamadapc)! - Internal changes and bug fixes to environmentDeduplication flag
14
+
15
+ ## 2.14.2
16
+
17
+ ### Patch Changes
18
+
19
+ - [#720](https://github.com/atlassian-labs/atlaspack/pull/720) [`d2fd849`](https://github.com/atlassian-labs/atlaspack/commit/d2fd849770fe6305e9c694bd97b1bd905abd9d94) Thanks [@alshdavid](https://github.com/alshdavid)! - Migrate to TypeScript
20
+
3
21
  ## 2.14.1
4
22
 
5
23
  ### Patch Changes
package/lib/index.js CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  const semver = require('semver');
4
4
  const COMPATIBLE_ATLASPACK_BABEL_TRANSFORMER_SEMVER = '^2.0.0-beta.1';
5
- module.exports = function (api, opts) {
5
+ module.exports = function parcelBabelPresetEnv(api, opts) {
6
6
  let name = api.caller(caller => caller && caller.name);
7
7
  let version = api.caller(caller => caller && caller.version);
8
8
  if (name === 'parcel' && typeof version === 'string' && semver.satisfies(version, COMPATIBLE_ATLASPACK_BABEL_TRANSFORMER_SEMVER)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/babel-preset-env",
3
- "version": "2.14.1-canary.40+d02eab95e",
3
+ "version": "2.14.1-canary.401+340caf69a",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -24,5 +24,8 @@
24
24
  "@babel/core": "^7.22.11"
25
25
  },
26
26
  "type": "commonjs",
27
- "gitHead": "d02eab95eb60bf7457e0869af0b773608592c0e6"
27
+ "scripts": {
28
+ "build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
29
+ },
30
+ "gitHead": "340caf69a4143bbea119745e2e29a3516d44d522"
28
31
  }
@@ -1,5 +1,3 @@
1
- // @flow
2
-
3
1
  import * as babel from '@babel/core';
4
2
  import assert from 'assert';
5
3