1.1.0 • Published 9 years ago
fly-autoprefixer v1.1.0
fly-autoprefixer

Autoprefixer plugin for Fly.
Install
npm install --save-dev fly-autoprefixerUsage
exports.styles = function * (fly) {
yield fly.source('src/styles/app.sass')
.sass()
.autoprefixer({
browsers: ['last 5 versions']
})
.target('dist/css');
}Note: If using a CSS preprocessing tool (SASS, Stylus, LESS, etc),
autoprefixer()must be invoked after the CSS has been compiled.
API
.autoprefixer(options)
This plugin does not have any custom options. Please visit autoprefixer options for a full list of available options.
License
MIT © Luke Edwards