From 1c8084d7e7a05c4453a3d78b49de4101e3da4f8a Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Fri, 16 Apr 2021 06:39:21 +0200 Subject: [PATCH] babelrc: Bump supported browser versions Commit fc73c07195c3 added a check for String.replaceAll(), update to the browsers which support that. These correspond to our website: https://github.com/cockpit-project/cockpit-project.github.io/commit/ea70505944 --- .babelrc.json | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.babelrc.json b/.babelrc.json index 05056e1bd..5d695458f 100644 --- a/.babelrc.json +++ b/.babelrc.json @@ -2,11 +2,10 @@ "presets": [ ["@babel/env", { "targets": { - "chrome": "57", - "firefox": "52", - "safari": "10.3", - "edge": "16", - "opera": "44" + "chrome": "85", + "firefox": "77", + "safari": "13.4", + "edge": "85" } }], "@babel/preset-react"