Comparing version 3.3.0 to 3.3.1
@@ -0,1 +1,5 @@ | ||
## 3.3.1 (October 17, 2017) | ||
- Fixed merge of `position` declarations when `sticky` fallback is using (@gruzzilkin, #356) | ||
## 3.3.0 (October 12, 2017) | ||
@@ -2,0 +6,0 @@ |
@@ -25,2 +25,6 @@ var resolveProperty = require('css-tree').property; | ||
var POSITION_SAFE_VALUE = [ | ||
'static', 'relative', 'absolute', 'fixed' | ||
]; | ||
var NEEDLESS_TABLE = { | ||
@@ -109,2 +113,6 @@ 'border-width': ['border'], | ||
} | ||
} else if (realName === 'position') { | ||
if (POSITION_SAFE_VALUE.indexOf(name) === -1) { | ||
special[name] = true; | ||
} | ||
} else if (DONT_MIX_VALUE.hasOwnProperty(realName)) { | ||
@@ -111,0 +119,0 @@ if (DONT_MIX_VALUE[realName].test(name)) { |
{ | ||
"name": "csso", | ||
"version": "3.3.0", | ||
"version": "3.3.1", | ||
"description": "CSS minifier with structural optimisations", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is too big to display
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
360783
3492