postcss-utilities
Advanced tools
Comparing version 0.5.0 to 0.5.1
# Change Log | ||
# v0.5.1 | ||
- Change string interpolation to single quotes | ||
# v0.5.0 | ||
@@ -4,0 +8,0 @@ |
@@ -25,5 +25,6 @@ /** | ||
if (smooth) { | ||
textShadow += `${w}${unit} ${h}${unit} 1${unit} ${color},`; | ||
textShadow += w + unit + ' ' + h + unit + ' 1' + | ||
unit + ' ' + color + ','; | ||
} else { | ||
textShadow += `${w}${unit} ${h}${unit} 0 ${color},`; | ||
textShadow += w + unit + ' ' + h + unit + ' 0 ' + color + ','; | ||
} | ||
@@ -30,0 +31,0 @@ } |
{ | ||
"name": "postcss-utilities", | ||
"version": "0.5.0", | ||
"version": "0.5.1", | ||
"description": "PostCSS plugin to add a collection of mixins, shortcuts, helpers and tools for your CSS", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
76516
2422