browserslist 4.8.2 → 4.8.3

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
+ ## 4.8.3
5
+ * Fix warning message (by Anton Ivanov).
6
+
4
7
  ## 4.8.2
5
8
  * Fix `Cannot convert undefined or null to object` (by Antoine Clausse).
6
9
  * Fix `mobileToDesktop` in `defaults` (by Huáng Jùnliàng).
package/README.md CHANGED
@@ -81,6 +81,8 @@ Browserslist will take queries from tool option,
81
81
 
82
82
  ## Tools
83
83
 
84
+ * [`browserl.ist`](https://browserl.ist/) is an online tool to check
85
+ what browsers will be selected by some query.
84
86
  * [`browserslist-ga`] and [`browserslist-ga-export`] download your website
85
87
  browsers statistics to use it in `> 0.5% in my stats` query.
86
88
  * [`browserslist-useragent-regexp`] compiles Browserslist query to a RegExp
package/node.js CHANGED
@@ -337,7 +337,7 @@ module.exports = {
337
337
  })
338
338
  console.warn(
339
339
  'Browserslist: caniuse-lite is outdated. ' +
340
- 'Please run next command `' + command + '`'
340
+ 'Please run the following command: `' + command + '`'
341
341
  )
342
342
  }
343
343
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browserslist",
3
- "version": "4.8.2",
3
+ "version": "4.8.3",
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,9 +15,9 @@
15
15
  "license": "MIT",
16
16
  "repository": "browserslist/browserslist",
17
17
  "dependencies": {
18
- "caniuse-lite": "^1.0.30001015",
18
+ "caniuse-lite": "^1.0.30001017",
19
19
  "electron-to-chromium": "^1.3.322",
20
- "node-releases": "^1.1.42"
20
+ "node-releases": "^1.1.44"
21
21
  },
22
22
  "bin": "./cli.js",
23
23
  "browser": {