postcss-merge-longhand
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -0,3 +1,7 @@ | ||
# 1.0.1 | ||
* Fixes an issue where calc values were being mangled. | ||
# 1.0.0 | ||
* Initial release. |
@@ -7,4 +7,6 @@ 'use strict'; | ||
var _postcss = require('postcss'); | ||
exports['default'] = function (v) { | ||
var s = typeof v === 'string' ? v.split(' ') : v; | ||
var s = typeof v === 'string' ? _postcss.list.space(v) : v; | ||
var value = [s[0], // top | ||
@@ -11,0 +13,0 @@ s[1] || s[0], // right |
{ | ||
"name": "postcss-merge-longhand", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Merge longhand properties into shorthand with PostCSS.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
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
10550
179