1.1.0 • Published 7 years ago

fly-autoprefixer v1.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

fly-autoprefixer npm package

Autoprefixer plugin for Fly.

Install

npm install --save-dev fly-autoprefixer

Usage

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