autoprefixer 9.7.3 → 9.7.4
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 +3 -0
- package/lib/autoprefixer.js +1 -1
- package/package.json +5 -7
package/CHANGELOG.md
CHANGED
package/lib/autoprefixer.js
CHANGED
|
@@ -16,7 +16,7 @@ var data = require('../data/prefixes');
|
|
|
16
16
|
|
|
17
17
|
var info = require('./info');
|
|
18
18
|
|
|
19
|
-
var WARNING = '\n' + ' Replace Autoprefixer `browsers` option to Browserslist config.\n' + ' Use `browserslist` key in `package.json` or `.browserslistrc` file.\n' + '\n' + ' Using `browsers` option cause
|
|
19
|
+
var WARNING = '\n' + ' Replace Autoprefixer `browsers` option to Browserslist config.\n' + ' Use `browserslist` key in `package.json` or `.browserslistrc` file.\n' + '\n' + ' Using `browsers` option can cause errors. Browserslist config \n' + ' can be used for Babel, Autoprefixer, postcss-normalize and other tools.\n' + '\n' + ' If you really need to use option, rename it to `overrideBrowserslist`.\n' + '\n' + ' Learn more at:\n' + ' https://github.com/browserslist/browserslist#readme\n' + ' https://twitter.com/browserslist\n' + '\n';
|
|
20
20
|
|
|
21
21
|
function isPlainObject(obj) {
|
|
22
22
|
return Object.prototype.toString.apply(obj) === '[object Object]';
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "autoprefixer",
|
|
3
|
-
"version": "9.7.
|
|
3
|
+
"version": "9.7.4",
|
|
4
4
|
"description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website",
|
|
5
5
|
"keywords": ["autoprefixer", "css", "prefix", "postcss", "postcss-plugin"],
|
|
6
|
+
"bin": "./bin/autoprefixer",
|
|
6
7
|
"funding": {
|
|
7
8
|
"type": "tidelift",
|
|
8
9
|
"url": "https://tidelift.com/funding/github/npm/autoprefixer"
|
|
@@ -14,17 +15,14 @@
|
|
|
14
15
|
"node": ">=6.0.0"
|
|
15
16
|
},
|
|
16
17
|
"dependencies": {
|
|
17
|
-
"browserslist": "^4.8.
|
|
18
|
-
"caniuse-lite": "^1.0.
|
|
18
|
+
"browserslist": "^4.8.3",
|
|
19
|
+
"caniuse-lite": "^1.0.30001020",
|
|
19
20
|
"chalk": "^2.4.2",
|
|
20
21
|
"normalize-range": "^0.1.2",
|
|
21
22
|
"num2fraction": "^1.2.2",
|
|
22
|
-
"postcss": "^7.0.
|
|
23
|
+
"postcss": "^7.0.26",
|
|
23
24
|
"postcss-value-parser": "^4.0.2"
|
|
24
25
|
},
|
|
25
|
-
"bin": {
|
|
26
|
-
"autoprefixer": "./bin/autoprefixer"
|
|
27
|
-
},
|
|
28
26
|
"eslintIgnore": ["build/"],
|
|
29
27
|
"browser": {
|
|
30
28
|
"chalk": false
|