npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

fly-autoprefixer

1.1.0

@lukeed

npmHomeRepoSnykSocket
Downloads:10
$ npm install fly-autoprefixer
DailyWeeklyMonthlyYearly

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