postcss-normalize-display-values
Advanced tools
Comparing version
{ | ||
"name": "postcss-normalize-display-values", | ||
"version": "5.1.0", | ||
"version": "6.0.0", | ||
"description": "Normalize multiple value display syntaxes into single values.", | ||
@@ -27,3 +27,3 @@ "main": "src/index.js", | ||
"engines": { | ||
"node": "^10 || ^12 || >=14.0" | ||
"node": "^14 || ^16 || >=18.0" | ||
}, | ||
@@ -35,4 +35,3 @@ "devDependencies": { | ||
"postcss": "^8.2.15" | ||
}, | ||
"readme": "# [postcss][postcss]-normalize-display-values\n\n> Normalize display property values with PostCSS.\n\n## Install\n\nWith [npm](https://npmjs.org/package/postcss-normalize-display-values) do:\n\n```\nnpm install postcss-normalize-display-values --save\n```\n\n## Example\n\n### Input\n\n```css\ndiv {\n display: inline flow-root\n}\n```\n\n### Output\n\n```css\ndiv {\n display: inline-block\n}\n``` \n\n## Usage\n\nSee the [PostCSS documentation](https://github.com/postcss/postcss#usage) for\nexamples for your environment.\n\n## Contributors\n\nSee [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).\n\n## License\n\nMIT © [Ben Briggs](http://beneb.info)\n\n[postcss]: https://github.com/postcss/postcss\n" | ||
} | ||
} |
@@ -1,15 +0,2 @@ | ||
declare const _exports: { | ||
clear(): void; | ||
delete(key: string): boolean; | ||
forEach(callbackfn: (value: string, key: string, map: Map<string, string>) => void, thisArg?: any): void; | ||
get(key: string): string | undefined; | ||
has(key: string): boolean; | ||
set(key: string, value: string): Map<string, string>; | ||
readonly size: number; | ||
entries(): IterableIterator<[string, string]>; | ||
keys(): IterableIterator<string>; | ||
values(): IterableIterator<string>; | ||
[Symbol.iterator](): IterableIterator<[string, string]>; | ||
readonly [Symbol.toStringTag]: string; | ||
}; | ||
declare const _exports: Map<string, string>; | ||
export = _exports; |
5704
-18.56%110
-10.57%