browserslist 4.21.5 → 4.21.6

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.
Files changed (3) hide show
  1. package/README.md +1 -3
  2. package/index.js +5 -0
  3. package/package.json +9 -5
package/README.md CHANGED
@@ -49,9 +49,7 @@ You can check how config works at our playground: [`browsersl.ist`](https://brow
49
49
  <a href="https://evilmartians.com/?utm_source=browserslist">
50
50
  <img src="https://evilmartians.com/badges/sponsored-by-evil-martians.svg"
51
51
  alt="Sponsored by Evil Martians" width="236" height="54">
52
- </a>
53
-
54
- <a href="https://cube.dev/?ref=eco-browserslist-github">
52
+ </a>  <a href="https://cube.dev/?ref=eco-browserslist-github">
55
53
  <img src="https://user-images.githubusercontent.com/986756/154330861-d79ab8ec-aacb-4af8-9e17-1b28f1eccb01.svg"
56
54
  alt="Supported by Cube" width="227" height="46">
57
55
  </a>
package/index.js CHANGED
@@ -270,6 +270,11 @@ function normalizeAndroidVersions(androidVersions, chromeVersions) {
270
270
  function normalizeAndroidData(android, chrome) {
271
271
  android.released = normalizeAndroidVersions(android.released, chrome.released)
272
272
  android.versions = normalizeAndroidVersions(android.versions, chrome.versions)
273
+ android.released.forEach(function (v) {
274
+ if (android.releaseDate[v] === undefined) {
275
+ android.releaseDate[v] = chrome.releaseDate[v]
276
+ }
277
+ })
273
278
  return android
274
279
  }
275
280
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browserslist",
3
- "version": "4.21.5",
3
+ "version": "4.21.6",
4
4
  "description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset",
5
5
  "keywords": [
6
6
  "caniuse",
@@ -15,16 +15,20 @@
15
15
  {
16
16
  "type": "tidelift",
17
17
  "url": "https://tidelift.com/funding/github/npm/browserslist"
18
+ },
19
+ {
20
+ "type": "github",
21
+ "url": "https://github.com/sponsors/ai"
18
22
  }
19
23
  ],
20
24
  "author": "Andrey Sitnik <andrey@sitnik.ru>",
21
25
  "license": "MIT",
22
26
  "repository": "browserslist/browserslist",
23
27
  "dependencies": {
24
- "caniuse-lite": "^1.0.30001449",
25
- "electron-to-chromium": "^1.4.284",
26
- "node-releases": "^2.0.8",
27
- "update-browserslist-db": "^1.0.10"
28
+ "caniuse-lite": "^1.0.30001489",
29
+ "electron-to-chromium": "^1.4.411",
30
+ "node-releases": "^2.0.12",
31
+ "update-browserslist-db": "^1.0.11"
28
32
  },
29
33
  "engines": {
30
34
  "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"