Skip to content

Commit

Permalink
feat: drop support for older Firefox versions
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Firefox < 57 is not supported anymore.
  • Loading branch information
dessant committed Jan 18, 2018
1 parent 0c47094 commit 21a929e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
3 changes: 1 addition & 2 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
[
"env",
{
"targets": {"chrome": 55, "firefox": 53, "opera": 42},
"exclude": ["transform-regenerator"]
"targets": {"chrome": 55, "firefox": 57, "opera": 42}
}
]
],
Expand Down
12 changes: 5 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,15 @@
"exec": "yarn run build && yarn run start",
"exec:prod": "yarn run build:prod && yarn run start",
"zip": "web-ext build -s dist/ -a artifacts/",
"start": "web-ext run --bc --url 'about:debugging' --url 'about:addons' -s dist/",
"inspect": "webpack --profile --json > report.json; webpack-bundle-analyzer report.json --mode static && sleep 6 && rm report.{json,html}",
"start":
"web-ext run --bc --url 'about:debugging' --url 'about:addons' -s dist/",
"inspect":
"webpack --profile --json > report.json; webpack-bundle-analyzer report.json --mode static && sleep 6 && rm report.{json,html}",
"update": "ncu --upgrade --upgradeAll && yarn",
"push": "git push --follow-tags origin master",
"release": "standard-version && yarn run push"
},
"browserslist": [
"Chrome >= 55",
"Firefox >= 53",
"Opera >= 42"
],
"browserslist": ["Chrome >= 55", "Firefox >= 57", "Opera >= 42"],
"dependencies": {
"@material/list": "^0.27.0",
"@material/ripple": "^0.27.0",
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"applications": {
"gecko": {
"id": "{ce9f4b1f-24b8-4e9a-9051-b9e472b1b2f2}",
"strict_min_version": "53.0"
"strict_min_version": "57.0"
}
},
"minimum_chrome_version": "55.0",
Expand Down
1 change: 0 additions & 1 deletion src/storage/storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import browser from 'webextension-polyfill';

import migrate from 'storage-versions';

// Firefox <= 52
let syncArea;
async function getSupportedArea(requestedArea) {
if (typeof syncArea === 'undefined') {
Expand Down

0 comments on commit 21a929e

Please sign in to comment.