Merge pull request #367 from babel/chromeandroid

Handle `chromeandroid` browserslist value. Fixes #366.
This commit is contained in:
Artem Yavorsky 2017-07-03 17:32:42 +03:00 committed by GitHub
commit eff645a900
4 changed files with 19 additions and 0 deletions

View File

@ -5,6 +5,7 @@ import { semverify } from "./utils";
const browserNameMap = {
android: "android",
chrome: "chrome",
and_chr: "chrome",
edge: "edge",
firefox: "firefox",
ie: "ie",

View File

@ -0,0 +1,2 @@
import "babel-polyfill";
1 ** 2;

View File

@ -0,0 +1,5 @@
import "core-js/modules/web.timers";
import "core-js/modules/web.immediate";
import "core-js/modules/web.dom.iterable";
1 ** 2;

View File

@ -0,0 +1,11 @@
{
"presets": [
["../../../../lib", {
"targets": {
"browsers": "chromeandroid 59"
},
"modules": false,
"useBuiltIns": true
}]
]
}