seba:minifiers-autoprefixer

v0.0.2Published 8 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

Standard Minifiers + Autoprefixing

This package provides two minifier plugins used for Meteor apps by default.

The JS minifier uses UglifyJS2. The options include name-mangling and other commonly used options.

The CSS minifier mostly reduces amount of white-space parsing CSS with ParseCSS.

Configuration

CSS can be prefixed with autoprefixer.

You can set the configuration by creating a postcss.json file in the root folder of your app. Example:

1{
2    "autoprefixer" : { "browsers": ["last 2 versions"] }
3}