update preset-env after build-data (#7543)

This commit is contained in:
Yael Hermon 2018-03-13 03:49:52 +02:00 committed by Brian Ng
parent 353d3199c2
commit dfb3795a97
3 changed files with 7 additions and 1 deletions

View File

@ -1,6 +1,7 @@
{
"es6.module": {
"edge": "16",
"firefox": "60",
"chrome": "61",
"safari": "10.1",
"ios_saf": "10.3"

View File

@ -234,7 +234,8 @@
"firefox": "55",
"safari": "11.1",
"node": "8.3",
"opera": "47"
"opera": "47",
"electron": "2"
},
"proposal-optional-catch-binding": {
"chrome": "66",

View File

@ -87,6 +87,7 @@ describe("getTargets", () => {
{
chrome: "61.0.0",
safari: "10.1.0",
firefox: "60.0.0",
ios: "10.3.0",
edge: "16.0.0",
},
@ -102,6 +103,7 @@ describe("getTargets", () => {
{
chrome: "61.0.0",
safari: "10.1.0",
firefox: "60.0.0",
ios: "10.3.0",
edge: "16.0.0",
},
@ -117,6 +119,7 @@ describe("getTargets", () => {
{
chrome: "61.0.0",
safari: "10.1.0",
firefox: "60.0.0",
ios: "10.3.0",
ie: "11.0.0",
edge: "16.0.0",
@ -137,6 +140,7 @@ describe("getTargets", () => {
ios: "10.3.0",
ie: "11.0.0",
edge: "16.0.0",
firefox: "60.0.0",
},
);
});