browserslist 2.1.4 → 2.1.5

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
+ ## 2.1.5
5
+ * Remove Firefox 45 from Firefox ESR.
6
+
4
7
  ## 2.1.4
5
8
  * Use both ESR versions when they actual.
6
9
 
package/README.md CHANGED
@@ -8,7 +8,7 @@ Library to share supported browsers list between different front-end tools.
8
8
  It is used in:
9
9
 
10
10
  * [Autoprefixer]
11
- * [babel-env-preset] (no config support, only tool option)
11
+ * [babel-preset-env] (no config support, only tool option)
12
12
  * [eslint-plugin-compat]
13
13
  * [stylelint-no-unsupported-browser-features]
14
14
  * [postcss-normalize]
@@ -55,7 +55,7 @@ You can test Browserslist queries in [online demo].
55
55
 
56
56
  [stylelint-no-unsupported-browser-features]: https://github.com/ismay/stylelint-no-unsupported-browser-features
57
57
  [eslint-plugin-compat]: https://github.com/amilajack/eslint-plugin-compat
58
- [babel-env-preset]: https://github.com/babel/babel-preset-env
58
+ [babel-preset-env]: https://github.com/babel/babel-preset-env
59
59
  [postcss-normalize]: https://github.com/jonathantneal/postcss-normalize
60
60
  [Autoprefixer]: https://github.com/postcss/autoprefixer
61
61
  [online demo]: http://browserl.ist/
package/index.js CHANGED
@@ -622,7 +622,7 @@ browserslist.queries = {
622
622
  esr: {
623
623
  regexp: /^(firefox|ff|fx)\s+esr$/i,
624
624
  select: function () {
625
- return ['firefox 52', 'firefox 45'];
625
+ return ['firefox 52'];
626
626
  }
627
627
  },
628
628
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browserslist",
3
- "version": "2.1.4",
3
+ "version": "2.1.5",
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,16 +10,16 @@
10
10
  "license": "MIT",
11
11
  "repository": "ai/browserslist",
12
12
  "dependencies": {
13
- "caniuse-lite": "^1.0.30000670",
14
- "electron-to-chromium": "^1.3.11"
13
+ "caniuse-lite": "^1.0.30000684",
14
+ "electron-to-chromium": "^1.3.14"
15
15
  },
16
16
  "bin": "./cli.js",
17
17
  "devDependencies": {
18
18
  "cross-spawn": "^5.1.0",
19
- "eslint": "^3.19.0",
19
+ "eslint": "^4.0.0",
20
20
  "eslint-config-postcss": "^2.0.2",
21
- "jest": "^20.0.3",
22
- "lint-staged": "^3.4.2",
21
+ "jest": "^20.0.4",
22
+ "lint-staged": "^3.6.1",
23
23
  "pre-commit": "^1.1.3",
24
24
  "yaspeller-ci": "^0.4.0"
25
25
  },