Skip to content

Releases: kimroen/ember-cli-autoprefixer

All you will ever need

v0.8.1

19 Sep 18:29
Compare
Choose a tag to compare

Fixes

  • Fixes issue with asset fingerprinting not taking autoprefixing into account #39

v0.8.0

26 Aug 19:35
Compare
Choose a tag to compare

This updates broccoli-autoprefixer to version 5, which in turn updates Autoprefixer to version 7.

See Autoprefixer's release notes for version 7 for details on what's new in Autoprefixer itself:

This release requires Node 4 or higher

v0.7.0

22 Apr 11:12
Compare
Choose a tag to compare

This release adds support for the new targets feature coming in Ember-CLI 2.13.

Where previously if you had defined a set of browsers for autoprefixer to target in your ember-cli-build.js file like so:

var app = new EmberApp(defaults, {
  autoprefixer: {
    browsers: [
      'last 2 Chrome versions',
      'last 2 Firefox versions',
      'last 1 Safari versions',
      'last 2 Edge versions'
    ]
  }
});

You can now define this project-wide instead, and ember-cli-autoprefixer will pick it up.

In your new config/targets.js-file in Ember-CLI version 2.13, you can specify the above this way:

module.exports = {  
  browsers: [
    'last 2 Chrome versions',
    'last 2 Firefox versions',
    'last 1 Safari versions',
    'last 2 Edge versions'
  ]
};

Read all about the benefits of this on @rwjblue's blog.

Thanks to @rwjblue and @cibernox for making this happen.

Version 0.0.3

07 Aug 19:42
Compare
Choose a tag to compare

This version adds support for some new options. You can check them out on the page for broccoli-autoprefixer.

Update Autoprefixer

31 Jul 15:21
Compare
Choose a tag to compare

This version updates broccoli-autoprefixer, which again updates to the latest version of Autoprefixer.

This a pretty big bump, in version, so there are some new options, which you can use by passing them in to the addon as shown in the README.

It lives!

06 Jul 14:30
Compare
Choose a tag to compare
v0.0.1

Write up some instructions