browserslist 1.7.6 → 1.7.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,9 @@
1
1
  # Change Log
2
2
  This project adheres to [Semantic Versioning](http://semver.org/).
3
3
 
4
+ ## 1.7.7
5
+ * Update Firefox ESR.
6
+
4
7
  ## 1.7.6
5
8
  * Fix Android Chrome selection.
6
9
 
package/index.js CHANGED
@@ -564,7 +564,7 @@ browserslist.queries = {
564
564
  esr: {
565
565
  regexp: /^(firefox|ff|fx)\s+esr$/i,
566
566
  select: function () {
567
- return ['firefox 45'];
567
+ return ['firefox 52'];
568
568
  }
569
569
  },
570
570
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browserslist",
3
- "version": "1.7.6",
3
+ "version": "1.7.7",
4
4
  "description": "Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset",
5
5
  "keywords": [
6
6
  "caniuse",
@@ -10,17 +10,17 @@
10
10
  "license": "MIT",
11
11
  "repository": "ai/browserslist",
12
12
  "dependencies": {
13
- "caniuse-db": "^1.0.30000631",
14
- "electron-to-chromium": "^1.2.5"
13
+ "caniuse-db": "^1.0.30000639",
14
+ "electron-to-chromium": "^1.2.7"
15
15
  },
16
16
  "bin": "./cli.js",
17
17
  "devDependencies": {
18
- "eslint": "^3.16.1",
18
+ "eslint": "^3.18.0",
19
19
  "eslint-config-postcss": "^2.0.2",
20
20
  "jest": "^19.0.2",
21
- "lint-staged": "^3.3.1",
21
+ "lint-staged": "^3.4.0",
22
22
  "pre-commit": "^1.1.3",
23
- "yaspeller": "^3.0.0"
23
+ "yaspeller-ci": "^0.3.0"
24
24
  },
25
25
  "eslintConfig": {
26
26
  "extends": "eslint-config-postcss/es5",
@@ -42,10 +42,10 @@
42
42
  },
43
43
  "scripts": {
44
44
  "lint-staged": "lint-staged",
45
- "test": "jest --coverage && eslint *.js test/*.js && yaspeller *.md"
45
+ "test": "jest --coverage && eslint *.js test/*.js && yaspeller-ci *.md"
46
46
  },
47
47
  "lint-staged": {
48
- "*.md": "yaspeller",
48
+ "*.md": "yaspeller-ci",
49
49
  "*.js": "eslint"
50
50
  },
51
51
  "pre-commit": [