jon-hall / ember-cli-autoprefixer

Automatically run your styles through autoprefixer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Autoprefixer for Ember CLI Build Status

This addon runs the styles of your Ember CLI-project through Autoprefixer.

Install

To install, run

ember install ember-cli-autoprefixer

Options

By default ember-cli-autoprefixer passes your projects target browsers (in Ember CLI >= 2.13.0) to autoprefixer. However, you can manually configure what browsers to target and other options by specifying them in your ember-cli-build.js (or Brocfile.js). An example:

var app = new EmberApp(defaults, {
  autoprefixer: {
    browsers: ['last 2 ios version'],
    cascade: false
  }
});

This would prefix styles as required by the two latest version of ios, and disable the cascade (see below).

You can disable Autoprefixer by passing in enabled: false.

Other options would also go here along with browsers, enabled and cascade.

You can read more about these settings and others over on the Autoprefixer page.

References

About

Automatically run your styles through autoprefixer

License:MIT License


Languages

Language:JavaScript 78.9%Language:HTML 20.6%Language:CSS 0.6%