Skip to content

3.0.0

Compare
Choose a tag to compare
@iamvdo iamvdo released this 05 Feb 14:35
· 118 commits to master since this release

Update from v2.0.0

Pleeease package no longer contains CLI tool. You have to uninstall it and use pleeease-cli instead.

Fixed from 2.0.0

  • browsers option now accepts multiple browsers
  • Imported URLs are now rebased

Added:

PostCSS v4.0.0 & Autoprefixer v5.1.0

Preprocessors (experimental)

You can now combine preprocessors and postprocessors easily, as they are included in Pleeease. Simply choose one from options:

{
    "less": true,
    "autoprefixer": true
}

Three most famous preprocessors: Sass, LESS ans Stylus.
It simplifies a lot when using with Gulp or any other similar tool, mainly if you want sourcemaps support.

Expose Pleeease

Pleeease can now be used as a plugin, and can be chained with other PostCSS modules.

var fixed = postcss().use(pleeease(options)).use(minifier).process('a{}').css;