Comparing version 0.7.0 to 0.8.0
@@ -24,3 +24,2 @@ function main(options, rules, declarations, properties) { | ||
addKey('minify', false); | ||
addKey('postcssOptions', {}); | ||
@@ -27,0 +26,0 @@ if (config.minify) |
@@ -11,4 +11,4 @@ (function() { | ||
} | ||
RTLCSS.prototype.process = function(css) { | ||
return postcss(this.postcss).process(css,config.postcssOptions).css; | ||
RTLCSS.prototype.process = function(css, options) { | ||
return postcss(this.postcss).process(css,options); | ||
}; | ||
@@ -105,3 +105,3 @@ RTLCSS.prototype.postcss = function (css) { | ||
rtlcss.process = function(css, options, rules, declarations, properties){ | ||
return new RTLCSS(options, rules, declarations, properties).process(css); | ||
return new RTLCSS(options, rules, declarations, properties).process(css).css; | ||
} | ||
@@ -108,0 +108,0 @@ |
{ | ||
"author": "Mohammad Younes", | ||
"name": "rtlcss", | ||
"version": "0.7.0", | ||
"version": "0.8.0", | ||
"description": "Framework for transforming cascading style sheets (CSS) from left-to-right (LTR) to right-to-left (RTL)", | ||
@@ -6,0 +6,0 @@ "bugs": "https://github.com/MohammadYounes/rtlcss/issues?state=open", |
@@ -224,2 +224,5 @@ [![GitHub version](https://badge.fury.io/gh/MohammadYounes%2Frtlcss.svg)](http://badge.fury.io/gh/MohammadYounes%2Frtlcss) | ||
## Release Notes | ||
* **v0.8.0** [8 Aug. 2014] | ||
* Fix source map generation. | ||
* **v0.7.0** [4 Jul. 2014] | ||
@@ -226,0 +229,0 @@ * Fix flipping linear-gradient. |
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
69450
267
1393