@atlaspack/babel-preset-env 2.14.1-dev.16 → 2.14.1-dev.161

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,12 @@
1
1
  # @atlaspack/babel-preset-env
2
2
 
3
+ ## 2.14.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#478](https://github.com/atlassian-labs/atlaspack/pull/478) [`570493b`](https://github.com/atlassian-labs/atlaspack/commit/570493beaf754e7985aebc7daaaf6dfcfa8fe56b) Thanks [@yamadapc](https://github.com/yamadapc)! - The first attempt at Version Packages didn't include the built artifacts.
8
+ This has hopefully been fixed, so this change will force those packages to re-release.
9
+
3
10
  ## 2.14.0
4
11
 
5
12
  ### Minor 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-dev.16+921d08b68",
3
+ "version": "2.14.1-dev.161+207d003c0",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -24,5 +24,5 @@
24
24
  "@babel/core": "^7.22.11"
25
25
  },
26
26
  "type": "commonjs",
27
- "gitHead": "921d08b68ca593f8cc8cb9ed0d182a5883a9e165"
27
+ "gitHead": "207d003c0f1d4ffa6a1c52d2f8841d998616c523"
28
28
  }