@types/autoprefixer
Advanced tools
Comparing version 9.7.0 to 9.7.1
@@ -33,5 +33,17 @@ // Type definitions for autoprefixer 9.7 | ||
stats?: Stats; | ||
/** @deprecated Replace Autoprefixer `browsers` option to `Browserslist` config */ | ||
/** @deprecated 'Change `browser` option to `overrideBrowserslist` in Autoprefixer */ | ||
browser?: string; | ||
/** | ||
* @deprecated Replace Autoprefixer `browsers` option to Browserslist config. | ||
* Use `browserslist` key in `package.json` or `.browserslistrc` file. | ||
*/ | ||
browsers?: string[] | string; | ||
/** list of queries for target browsers */ | ||
/** @deprecated Change `browserslist` option to `overrideBrowserslist` in Autoprefixer */ | ||
browserslist?: string[] | string; | ||
/** | ||
* list of queries for target browsers. | ||
* Try to not use it. | ||
* The best practice is to use `.browserslistrc` config or `browserslist` key in `package.json` | ||
* to share target browsers with Babel, ESLint and Stylelint | ||
*/ | ||
overrideBrowserslist?: BrowserslistTarget; | ||
@@ -38,0 +50,0 @@ /** do not raise error on unknown browser version in `Browserslist` config. */ |
{ | ||
"name": "@types/autoprefixer", | ||
"version": "9.7.0", | ||
"version": "9.7.1", | ||
"description": "TypeScript definitions for autoprefixer", | ||
@@ -40,4 +40,4 @@ "license": "MIT", | ||
}, | ||
"typesPublisherContentHash": "ab9ac1d045a941a325d9152ae3387c8b0d5f7d45e4e219b4b4e21b5867b018bb", | ||
"typesPublisherContentHash": "40f78a8fce29fecfcb5de8ffbdbc6da7ae1c457fec33f2d888a49cef28475a88", | ||
"typeScriptVersion": "2.8" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Fri, 14 Feb 2020 01:36:37 GMT | ||
* Last updated: Tue, 10 Mar 2020 22:39:34 GMT | ||
* Dependencies: [@types/postcss](https://npmjs.com/package/@types/postcss), [@types/browserslist](https://npmjs.com/package/@types/browserslist) | ||
@@ -17,2 +17,2 @@ * Global values: none | ||
# Credits | ||
These definitions were written by Armando Meziat (https://github.com/odnamrataizem), murt (https://github.com/murt), Slava Fomin II (https://github.com/slavafomin), and Piotr Błażejewicz (https://github.com/peterblazejewicz). | ||
These definitions were written by [Armando Meziat](https://github.com/odnamrataizem), [murt](https://github.com/murt), [Slava Fomin II](https://github.com/slavafomin), and [Piotr Błażejewicz](https://github.com/peterblazejewicz). |
6024
63