Skip to content

Releases: SassNinja/postcss-extract-media-query

v3.0.0

24 Oct 09:40
Compare
Choose a tag to compare

This release upgrades PostCSS to version 8 which results in better performance and enable further optimization in future. As it's now a peer dependency it might be a breaking change because you've to install it yourself now if you're not using npm >= v7. Apart from that all deprecations are removed now, meaning they are not throwing a warning anymore.

Check the migration notes when you upgrade
https://github.com/SassNinja/postcss-extract-media-query#migration

v2.0.0

02 Jan 09:55
43b7d58
Compare
Choose a tag to compare

This release is makes the plugin much more flexible!
It now automatically recognizes the postcss.config.js and applies all subsequent PostCSS plugin to the extracted files as well!

Check the migration notes when you upgrade
https://github.com/SassNinja/postcss-extract-media-query#migration

v1.3.0

28 Oct 09:00
Compare
Choose a tag to compare

This release is an internal rework of the extraction. As a result nested atRules are now possible! 🎉

.foo { color: red }
@media screen and (min-width: 1024px) {
  .foo { color: green }
  @supports (display: grid) {
    .foo { font-size: 1rem }
  }
}

v1.2.1

21 Jun 10:48
Compare
Choose a tag to compare

This release fixes the internal filename regex to support dot namespaced filenames such as example.namespace.css

v1.2.0

20 Mar 15:51
Compare
Choose a tag to compare

This release improves output.name option to support the same placeholder multiple times.

v1.1.0

12 Jun 08:53
Compare
Choose a tag to compare

This release adds the whitelist feature.

v1.0.0

30 May 12:57
Compare
Choose a tag to compare

This release is production ready and has been tested with different bundlers and task runner.

v0.0.1

28 May 21:42
Compare
Choose a tag to compare
v0.0.1 Pre-release
Pre-release

This pre-release contains the basic features (extraction & merging) and has been tested using webpack postcss-loader.