browserslist 4.5.0 → 4.5.1

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/CHANGELOG.md +3 -0
  2. package/node.js +2 -1
  3. package/package.json +3 -3
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.5.1
5
+ * Improve text for the warning about outdated `caniuse-lite`.
6
+
4
7
  ## 4.5
5
8
  * Add `>=`, `>`, and `<=` support for Node.js version (by Mathspy Terabithian).
6
9
 
package/node.js CHANGED
@@ -306,7 +306,8 @@ module.exports = {
306
306
  })
307
307
  console.warn(
308
308
  'Browserslist: caniuse-lite is outdated. ' +
309
- 'Please run next command `' + command + ' caniuse-lite browserslist`')
309
+ 'Please run next command `' + command + '`'
310
+ )
310
311
  }
311
312
  },
312
313
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browserslist",
3
- "version": "4.5.0",
3
+ "version": "4.5.1",
4
4
  "description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset",
5
5
  "keywords": [
6
6
  "caniuse",
@@ -11,9 +11,9 @@
11
11
  "license": "MIT",
12
12
  "repository": "browserslist/browserslist",
13
13
  "dependencies": {
14
- "caniuse-lite": "^1.0.30000948",
14
+ "caniuse-lite": "^1.0.30000949",
15
15
  "electron-to-chromium": "^1.3.116",
16
- "node-releases": "^1.1.10"
16
+ "node-releases": "^1.1.11"
17
17
  },
18
18
  "bin": "./cli.js",
19
19
  "browser": {