1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 01:47:00 +01:00

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.
This commit is contained in:
Mark Stacey 2020-12-10 01:59:47 -03:30 committed by GitHub
parent 9f50d8a300
commit 4587e984f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -3,5 +3,5 @@
"matches": ["https://metamask.io/*"],
"ids": ["*"]
},
"minimum_chrome_version": "58"
"minimum_chrome_version": "63"
}

View File

@ -6,7 +6,7 @@ module.exports = function (api) {
'@babel/preset-env',
{
targets: {
browsers: ['chrome >= 58', 'firefox >= 56.2'],
browsers: ['chrome >= 63', 'firefox >= 56.2'],
},
},
],