Skip to content

Commit

Permalink
fix: remove support for outdated browsers
Browse files Browse the repository at this point in the history
BREAKING CHANGE: browser versions before Chrome 76, Firefox 68 and Opera 63
are no longer supported
  • Loading branch information
dessant committed May 28, 2020
1 parent 84db116 commit ef7514e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
"release": "standard-version"
},
"browserslist": [
"Chrome >= 55",
"Firefox >= 53",
"FirefoxAndroid >= 57",
"Opera >= 42"
"Chrome >= 76",
"Firefox >= 68",
"FirefoxAndroid >= 68",
"Opera >= 63"
],
"dependencies": {
"@material/theme": "^4.0.0",
Expand Down
6 changes: 3 additions & 3 deletions src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
"browser_specific_settings": {
"gecko": {
"id": "{e58d3966-3d76-4cd9-8552-1582fbc800c1}",
"strict_min_version": "53.0"
"strict_min_version": "68.0"
}
},
"minimum_chrome_version": "55.0",
"minimum_opera_version": "42.0",
"minimum_chrome_version": "76.0",
"minimum_opera_version": "63.0",

"permissions": [
"storage",
Expand Down

0 comments on commit ef7514e

Please sign in to comment.