This repository has been archived by the owner on Dec 19, 2024. It is now read-only.
Releases: MoOx/postcss-cssnext
Releases · MoOx/postcss-cssnext
2.5.2
2.5.1
2.5.0
- Added: cssnext will now warn you when you have duplicates plugins.
This is a really common mistake, people include plugins that are already
included in cssnext and maybe sometimes in an inaccurate position.
Most tutorial on the internet are wrong (probably 99%)
and show provide duplicates in their examples.
(eg: autoprefixer + cssnext - but cssnext already includes autoprefixer).
In order to fix this, here is a warning. You are welcome.
Read more about this issue - Added:
rem
will now adjust its behavior according to browser option
(IE 9 and IE 10 will only havepx
in some places, where rem support is
buggy, per caniuse notes)
(#264)
2.4.0
2.3.0
2.2.0
2.1.0
- Added: postcss-initial
(a907881).
Supportsinitial
value for all properties. Also it supportsall: initial
.
Does not supportall: unset
andall: inherit
.
Plugin can be useful for creating isolated components.all
specification: https://drafts.csswg.org/css-cascade/#all-shorthandall
browsers support: http://caniuse.com/#feat=css-allinitial
value specification: https://drafts.csswg.org/css-cascade/#initial-valueinitial
value browser support: http://caniuse.com/#feat=css-initial-value
2.0.1
2.0.0
- Added: support for PostCSS v5.x
- Removed: support for PostCSS v4.x
(b5ece99...8907c13).
1.8.4
- Fixed:
compress
option now works again correctly. A recent update in cssnano
has introduced some minor breaking changes the way cssnext changed plugins
metadata (pluginName
).
A direct minor change is thatmessages
(in console or in css output) now show
real origin (postcss plugin name) instead of a vague "cssnext" origin.
(#195)