postcss-normalize-whitespace
Advanced tools
Comparing version
{ | ||
"name": "postcss-normalize-whitespace", | ||
"version": "5.1.1", | ||
"version": "6.0.0", | ||
"description": "Trim whitespace inside and around CSS rules & declarations.", | ||
@@ -32,3 +32,3 @@ "main": "src/index.js", | ||
"engines": { | ||
"node": "^10 || ^12 || >=14.0" | ||
"node": "^14 || ^16 || >=18.0" | ||
}, | ||
@@ -40,4 +40,3 @@ "devDependencies": { | ||
"postcss": "^8.2.15" | ||
}, | ||
"readme": "# [postcss][postcss]-normalize-whitespace\n\n> Normalize whitespace with PostCSS.\n\n## Install\n\nWith [npm](https://npmjs.org/package/postcss-normalize-whitespace) do:\n\n```\nnpm install postcss-normalize-whitespace --save\n```\n\n## Example\n\n### Input\n\n```css\nh1{\n width: calc(10px - ( 100px / var(--test) )) \n}\n```\n\n### Output\n\n```css\nh1{\n width: calc(10px - 100px / var(--test))\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" | ||
} | ||
} |
5827
-11.67%