From 38546505464f8bb03fc719bf200b58c9913188b9 Mon Sep 17 00:00:00 2001 From: Antoine Nauleau <30602458+ajnauleau@users.noreply.github.com> Date: Wed, 22 Aug 2018 15:50:24 -0700 Subject: [PATCH] Minimum Browsers Supported (#4873) * Minimum supported browsers and version standard: add browsers and targets to .babelrc and package.json * Regenerate package.json, fix issue with comma in merge * Resolve merge conflicts * Regenerate package-lock.json * Revert to previous package-lock.json --- .babelrc | 2 +- package.json | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.babelrc b/.babelrc index fcabd2d1a..9b1d5409b 100644 --- a/.babelrc +++ b/.babelrc @@ -1,4 +1,4 @@ { - "presets": [["env"], "react", "stage-0"], + "presets": [["env", { "targets": { "browsers": [">0.25%", "not ie 11", "not op_mini all"] } } ], "react", "stage-0"], "plugins": ["transform-runtime", "transform-async-to-generator", "transform-class-properties"] } diff --git a/package.json b/package.json index 698251ccf..f642a20c6 100644 --- a/package.json +++ b/package.json @@ -57,7 +57,11 @@ [ "env", { - "debug": true + "browsers": [ + ">0.25%", + "not ie 11", + "not op_mini all" + ] } ], "stage-0"