Releases: dehuszar/postcss-reference
Releases · dehuszar/postcss-reference
Improving `@import` path handling
Hopefully fixes scenarios where @import
variations are handled better.
Should support paths like
@reference {
@import 'my.css'
@import "my.css"
@import './my.css'
@import "subfolder/my.css"
@import url("my.css")
...etc
}
...
Attempting to fix botched release
There were some issues with the deployment of 2.1.0. This release will hopefully patch that
v2.1.0
v2.0.0
Media-Query referencing is now
Introduction of @references-media for cross media-query referencing
First official release
First official release brings
- the ability to define and import styles for reuse and referencing across a stylesheet.
- the ability to set an 'all' flag to match relative selectors (i.e.
@references th all;
will match 'th', 'th > h1', etc., but not 'thead' or 'table th'), pseudo-classes, and media-queries, and - match rules from the same media query, or with the 'all' flag set allow a non-media-query wrapped selector reference every media query the selector might have a match in.