tailwindcss-export-config
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="1.0.3"></a> | ||
## [1.0.3](https://github.com/dobromir-hristov/tailwindcss-export-config/compare/v1.0.2...v1.0.3) (2019-03-15) | ||
### Bug Fixes | ||
* fix array to string conversion in LESS ([c295e38](https://github.com/dobromir-hristov/tailwindcss-export-config/commit/c295e38)) | ||
<a name="1.0.2"></a> | ||
@@ -7,0 +17,0 @@ ## [1.0.2](https://github.com/dobromir-hristov/tailwindcss-export-config/compare/v1.0.1...v1.0.2) (2018-06-21) |
{ | ||
"name": "tailwindcss-export-config", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "Export Tailwindcss config options to SASS, SCSS, LESS and Stylus", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -25,3 +25,3 @@ const reduce = require('lodash.reduce') | ||
_sanitizePropValue (value) { | ||
if (Array.isArray(value)) return value.join(' ') | ||
if (Array.isArray(value)) return value.join(', ') | ||
return value | ||
@@ -28,0 +28,0 @@ } |
Sorry, the diff of this file is not supported yet
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
314614