Skip to content

Releases: MoOx/postcss-cssnext

1.4.0

01 May 05:35
Compare
Choose a tag to compare
  • Added: support for :matches() selector pseudo class
  • Added: support for :not() selector pseudo class level 4 (transpiled to level 3)

1.3.1

01 May 05:27
Compare
Choose a tag to compare
  • Fixed: CLI --watch doesn't make some duplicate rebuild anymore.

1.3.0

16 Apr 13:10
Compare
Choose a tag to compare
  • Added: hexadecimal fallback for rgba() color

1.2.3

10 Apr 05:15
Compare
Choose a tag to compare
  • Fixed: --watch doesn't output console.log() related to watcherd/unwatched files anymore

1.2.2

09 Apr 13:44
Compare
Choose a tag to compare
  • Changed: upgrade chokidar to stable 1.0.0 (used for cssnext --watch)

1.2.1

02 Apr 06:46
Compare
Choose a tag to compare

1.2.0

02 Apr 06:25
Compare
Choose a tag to compare
  • Added: pseudoElements single colon fallback for pseudoElements double colons
  • Added: --watch CLI option now checks for changes in imported files

1.1.0

05 Mar 06:46
Compare
Choose a tag to compare
  • Added: --config CLI option
  • Added: --browsersCLI option

1.0.1

18 Feb 11:28
Compare
Choose a tag to compare
  • Fixed: cssnext binary doesn't exit on an error if --watch is enabled (#69)

1.0.0

06 Feb 06:56
Compare
Choose a tag to compare
  • Changed: upgraded to postcss v4.x
  • Changed: import is not considered as a feature anymore, but is now directly an option for the API.
    It is still enabled by default.
    Before
cssnext({
  features: {
    import: {
      root: "./src"
    }
  }
})

After

cssnext({
  import: {
    root: "./src"
  }
})
  • Added: url option: non absolute url() are now rebased according to from (and to options if provided). Enabled by default.
  • Added: compress option now accept CSSWring options directly.
  • Added: browsers option can enable or disable features and is propagated to autoprefixer
  • Added: px fallback for rem unit