Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rtlcss

Package Overview
Dependencies
Maintainers
1
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rtlcss - npm Package Compare versions

Comparing version 0.7.0 to 0.8.0

1

lib/config.js

@@ -24,3 +24,2 @@ function main(options, rules, declarations, properties) {

addKey('minify', false);
addKey('postcssOptions', {});

@@ -27,0 +26,0 @@ if (config.minify)

6

lib/rtlcss.js

@@ -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.

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