Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

postcss-grid-fluid

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-grid-fluid - npm Package Compare versions

Comparing version 0.1.15 to 0.1.16

4

package.json
{
"name": "postcss-grid-fluid",
"version": "0.1.15",
"version": "0.1.16",
"description": "A PostCSS plugin to create fluid grids.",

@@ -24,2 +24,3 @@ "keywords": [

"dependencies": {
"ava": "^0.19.1",
"postcss": "^6.0.1"

@@ -33,3 +34,2 @@ },

"devDependencies": {
"ava": "^0.19.1",
"babel-cli": "^6.24.1",

@@ -36,0 +36,0 @@ "babel-preset-es2015": "^6.24.1",

@@ -26,3 +26,3 @@ import postcss from 'postcss';

} else if (node.type === 'decl' && node.prop.match(/^gf$/)) {
const value = node.value.split(/\s+(?![^\[]*\]|[^(]*\)|[^\{]*})/);
const value = node.value.split(/\s+(?![^[]*\]|[^(]*\)|[^{]*})/);
if (value[0] === 'row') {

@@ -29,0 +29,0 @@ value[1] = value[1] || options.gutter;

@@ -8,3 +8,3 @@ import postcss from 'postcss';

clearfixRule.append({ prop: 'clear', value: 'both' });
clearfixRule.moveAfter(decl.parent);
decl.parent.after(clearfixRule);

@@ -11,0 +11,0 @@ let declNew = [

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