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: 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 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.babelrc') 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"] } -- cgit