From 4587e984f5b1758cc5cd26df8d47d7347485d65b Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Thu, 10 Dec 2020 01:59:47 -0330 Subject: [PATCH] Increase Chrome minimum version (#10019) The Chrome minimum version has been increased from v58 to v63. We found that we had very few users on versions below v63, and v62 is incompatible with our SES lockdown dependency. This also makes us compatible with Object rest/spread syntax, so we might not have to transpile that anymore. I'll revisit that separately. --- app/manifest/chrome.json | 2 +- babel.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/manifest/chrome.json b/app/manifest/chrome.json index 908d430c9..281c847a4 100644 --- a/app/manifest/chrome.json +++ b/app/manifest/chrome.json @@ -3,5 +3,5 @@ "matches": ["https://metamask.io/*"], "ids": ["*"] }, - "minimum_chrome_version": "58" + "minimum_chrome_version": "63" } diff --git a/babel.config.js b/babel.config.js index 9f3af9523..f340966ab 100644 --- a/babel.config.js +++ b/babel.config.js @@ -6,7 +6,7 @@ module.exports = function (api) { '@babel/preset-env', { targets: { - browsers: ['chrome >= 58', 'firefox >= 56.2'], + browsers: ['chrome >= 63', 'firefox >= 56.2'], }, }, ],