From 496654400254cb8d2b9e99f13e972f96aa8b58a5 Mon Sep 17 00:00:00 2001 From: Brian Ng Date: Fri, 3 Mar 2017 17:03:58 -0600 Subject: [PATCH] v1.2.0 changelog [skip ci] --- experimental/babel-preset-env/CHANGELOG.md | 31 +++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/experimental/babel-preset-env/CHANGELOG.md b/experimental/babel-preset-env/CHANGELOG.md index 3cfb25cf07..3ac5330942 100644 --- a/experimental/babel-preset-env/CHANGELOG.md +++ b/experimental/babel-preset-env/CHANGELOG.md @@ -1,6 +1,35 @@ # Changelog -## v.1.1.11 (2017-03-01) +## v1.2.0 (2017-03-03) + +### :rocket: New Feature + +- Add uglify as a target ([#178](https://github.com/babel/babel-preset-env/pull/178)) (@yavorsky) + +Support for `uglify` as a target is now available! This will enable all plugins and, as a result, fully compiles your code to ES5. Note, that useBuiltIns will work as before, and only the polyfills that your other target(s) need will be included. + +```json +{ + "presets": [ + ["env", { + "targets": { + "chrome": 55, + "uglify": true + }, + "useBuiltIns": true, + "modules": false + }] + ] +} +``` + +### :bug: Bug Fix + +- Respect older versions in invert equals map ([#180](https://github.com/babel/babel-preset-env/pull/180)) (@danez) + +Fixes a number of bugs that caused some incorrect and/or missing environment data when parsing `compat-table`. + +## v1.1.11 (2017-03-01) This release primarily upgrades `compat-table`, which adds support for async on Node 7.6!