Socket
Socket
Sign inDemoInstall

postcss-flexbugs-fixes

Package Overview
Dependencies
9
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.0.0 to 3.1.0

0

bugs/bug4.js

@@ -0,0 +0,0 @@ var postcss = require('postcss');

6

bugs/bug6.js

@@ -9,4 +9,8 @@ var postcss = require('postcss');

var flexBasis = values[2] || '0%';
decl.value = flexGrow + ' ' + flexShrink + ' ' + flexBasis;
// Safari seems to hate '0%' and the others seems to make do with a nice value when basis is missing,
// so if we see a '0%', just remove it. This way it'll get adjusted for any other cases where '0%' is
// already defined somewhere else.
if(flexBasis === '0%') flexBasis = null;
decl.value = flexGrow + ' ' + flexShrink + (flexBasis ? ' ' + flexBasis : '');
}
};

@@ -0,0 +0,0 @@ var postcss = require('postcss');

@@ -0,1 +1,4 @@

## 3.1.0
* Fix safari issues with flex-basis [#38](https://github.com/luisrudge/postcss-flexbugs-fixes/pull/38)
## 3.0.0

@@ -2,0 +5,0 @@ * upgrade to postcss 6

@@ -0,0 +0,0 @@ var postcss = require('postcss');

2

package.json
{
"name": "postcss-flexbugs-fixes",
"version": "3.0.0",
"version": "3.1.0",
"description": "PostCSS plugin This project tries to fix all of flexbug's issues",

@@ -5,0 +5,0 @@ "keywords": ["postcss", "css", "postcss-plugin", "flexbugs", "flexbox", "flex"],

@@ -0,0 +0,0 @@ # PostCSS Flexbugs Fixes [![Build Status][ci-img]][ci]

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc