autoprefixer
Advanced tools
Comparing version 6.7.6 to 6.7.7
# Change Log | ||
This project adheres to [Semantic Versioning](http://semver.org/). | ||
## 6.7.7 | ||
* Fix `order` for non-digit values. | ||
## 6.7.6 | ||
@@ -5,0 +8,0 @@ * Fix `font-kerning` (by Chi Vinh Le). |
@@ -38,3 +38,3 @@ (function() { | ||
spec = flexSpec(prefix)[0]; | ||
if (spec === 2009) { | ||
if (spec === 2009 && /\d/.test(decl.value)) { | ||
decl.value = (parseInt(decl.value) + 1).toString(); | ||
@@ -41,0 +41,0 @@ return Order.__super__.set.call(this, decl, prefix); |
{ | ||
"name": "autoprefixer", | ||
"version": "6.7.6", | ||
"version": "6.7.7", | ||
"description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website", | ||
@@ -16,7 +16,7 @@ "keywords": [ | ||
"dependencies": { | ||
"browserslist": "^1.7.5", | ||
"caniuse-db": "^1.0.30000628", | ||
"browserslist": "^1.7.6", | ||
"caniuse-db": "^1.0.30000634", | ||
"normalize-range": "^0.1.2", | ||
"num2fraction": "^1.2.2", | ||
"postcss": "^5.2.15", | ||
"postcss": "^5.2.16", | ||
"postcss-value-parser": "^3.2.3" | ||
@@ -29,3 +29,3 @@ }, | ||
"gulp": "^3.9.1", | ||
"gulp-coffee": "^2.3.3", | ||
"gulp-coffee": "^2.3.4", | ||
"gulp-eslint": "^3.0.1", | ||
@@ -36,3 +36,3 @@ "gulp-json-editor": "^2.2.1", | ||
"mocha": "^3.2.0", | ||
"should": "^11.2.0", | ||
"should": "^11.2.1", | ||
"vinyl-source-stream": "^1.1.0", | ||
@@ -39,0 +39,0 @@ "coffee-script": "^1.12.4" |
@@ -532,3 +532,3 @@ # Autoprefixer [![Build Status][ci-img]][ci] | ||
* `browsers` (array): list of browsers query (like `last 2 version`), | ||
* `browsers` (array): list of browsers query (like `last 2 versions`), | ||
which are supported in your project. We recommend to use `browserslist` | ||
@@ -535,0 +535,0 @@ config or `browserslist` key in `package.json`, rather than this option |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
210902
Updatedbrowserslist@^1.7.6
Updatedcaniuse-db@^1.0.30000634
Updatedpostcss@^5.2.16