Releases: kimroen/ember-cli-autoprefixer
All you will ever need
v0.8.1
v0.8.0
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
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.
Version 0.0.3
This version adds support for some new options. You can check them out on the page for broccoli-autoprefixer.
Update Autoprefixer
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
.