Socket
Socket
Sign inDemoInstall

csso

Package Overview
Dependencies
Maintainers
3
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

csso - npm Package Compare versions

Comparing version 3.3.0 to 3.3.1

4

HISTORY.md

@@ -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)) {

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc