Socket
Socket
Sign inDemoInstall

postcss-ordered-values

Package Overview
Dependencies
Maintainers
1
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-ordered-values - npm Package Compare versions

Comparing version 2.2.0 to 2.2.1

4

CHANGELOG.md

@@ -0,1 +1,5 @@

# 2.2.1
* Now will not re-order values that contain any `var()` definitions.
# 2.2.0

@@ -2,0 +6,0 @@

2

dist/rules/border.js

@@ -33,3 +33,3 @@ 'use strict';

border.walk(function (node) {
if (node.type === 'comment') {
if (node.type === 'comment' || node.type === 'function' && node.value === 'var') {
abort = true;

@@ -36,0 +36,0 @@ return false;

@@ -47,3 +47,3 @@ 'use strict';

arg.forEach(function (node) {
if (node.type === 'comment') {
if (node.type === 'comment' || node.type === 'function' && node.value === 'var') {
abort = true;

@@ -50,0 +50,0 @@ return;

@@ -29,3 +29,3 @@ 'use strict';

flexFlow.walk(function (node) {
if (node.type === 'comment') {
if (node.type === 'comment' || node.type === 'function' && node.value === 'var') {
abort = true;

@@ -32,0 +32,0 @@ return;

@@ -50,3 +50,3 @@ 'use strict';

arg.forEach(function (node) {
if (node.type === 'comment') {
if (node.type === 'comment' || node.type === 'function' && node.value === 'var') {
abort = true;

@@ -53,0 +53,0 @@ return;

{
"name": "postcss-ordered-values",
"version": "2.2.0",
"version": "2.2.1",
"description": "Ensure values are ordered consistently in your CSS.",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -50,2 +50,3 @@ # [postcss][postcss]-ordered-values [![Build Status](https://travis-ci.org/ben-eb/postcss-ordered-values.svg?branch=master)][ci] [![NPM version](https://badge.fury.io/js/postcss-ordered-values.svg)][npm] [![Dependency Status](https://gemnasium.com/ben-eb/postcss-ordered-values.svg)][deps]

* `flex-flow`
* `transition`, `-webkit-transition`

@@ -52,0 +53,0 @@ ## Usage

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