Update dependency postcss to ^8.2.4
Created by: renovate[bot]
This PR contains the following updates:
Package | Change | Age | Adoption | Passing | Confidence |
---|---|---|---|---|---|
postcss (source) | ^8.1.14 -> ^8.2.4 |
Release Notes
postcss/postcss
v8.2.4
- Added plugin name to
postcss.plugin()
warning (by Tom Williams). - Fixed docs (by Bill Columbia).
v8.2.3
- Fixed
JSON.stringify(Node[])
support (by Niklas Mischkulnig).
v8.2.2
- Fixed CSS-in-JS support (by James Garbutt).
- Fixed plugin types (by Ludovico Fischer).
- Fixed
Result#warn()
types.
v8.2.1
- Fixed
Node#toJSON()
andpostcss.fromJSON()
(by Niklas Mischkulnig).
v8.2.0
PostCSS 8.2 added a new API to serialize and deserialize CSS AST to JSON.
import { parse, fromJSON } from 'postcss'
let root = parse('a{}', { from: 'input.css' })
let json = root.toJSON()
// save to file, send by network, etc
let root2 = fromJSON(json)
Thanks to @mischnic for his work.
Renovate configuration
-
If you want to rebase/retry this PR, check this box
This PR has been generated by WhiteSource Renovate. View repository job log here.