Releases: RadValentin/postcss-prefix-selector
Releases · RadValentin/postcss-prefix-selector
2.1.0 Transform global selectors
- Global selectors
html
,body
,:root
can't be prefixed so they're replaced by the prefix insteadbody => .prefix
. skipGlobalSelectors
options disables this behavior, global selectors won't be changed in any way
2.0.0 Add support for PostCSS 8 and visitors API
This PR finishes the work started in #95, more specifically the plugin now uses visitors API from PostCSS 8, this will fix compatibility issues with other plugins like postcss-nested
.
Note: Projects that use PostCSS < 8 should stick to older versions of the plugin, most likely postcss-prefix-selector@1.16.1
v1.16.1
Don't prefix -ms-keyframes
at-rule. Thanks @TorusHelm!
1.16.0
1.15.0
Made PostCSS peer dependency less restrictive, "postcss": ">4 <9"
1.14.0
1.13.0
1.12.0
v1.12.0 1.12.0
1.11.0
Updated plugin to use new postcss visitor API via PR #93, thanks @TheSeally
NOTE: This has been deprecated as it was introducing a breaking change, the plugin will be reworked to support PostCSS 8 in #95
1.10.0
Now the ignoreFiles
/includeFiles
also support regex via PR #91, thanks @mellis481