Comparing version 2.2.1 to 2.3.0
@@ -0,1 +1,4 @@ | ||
## 2.3.0 - 9 Jun. 2018 | ||
* Skip processing CSS variables. **Thanks @danfooo** | ||
## 2.2.1 - 9 Nov. 2017 | ||
@@ -2,0 +5,0 @@ * Fixes a bug in flipping `background-position` having keywords only (Fixes [#107](https://github.com/MohammadYounes/rtlcss/issues/107)). |
@@ -179,2 +179,9 @@ 'use strict' | ||
{ | ||
'name': 'variable', | ||
'expr': /^--/im, | ||
'action': function (prop, value) { | ||
return { 'prop': prop, 'value': value } | ||
} | ||
}, | ||
{ | ||
'name': 'direction', | ||
@@ -181,0 +188,0 @@ 'expr': /direction/im, |
{ | ||
"author": "Mohammad Younes", | ||
"name": "rtlcss", | ||
"version": "2.2.1", | ||
"version": "2.3.0", | ||
"description": "Framework for transforming cascading style sheets (CSS) from left-to-right (LTR) to right-to-left (RTL)", | ||
@@ -6,0 +6,0 @@ "homepage": "http://rtlcss.com/", |
@@ -19,3 +19,4 @@ /* global describe */ | ||
'# RTLCSS (Hooks):': require('./data/rtlcss-hooks.js'), | ||
'# Special:': require('./data/special.js') | ||
'# Special:': require('./data/special.js'), | ||
'# Variables:': require('./data/variables.js') | ||
} | ||
@@ -22,0 +23,0 @@ var key |
Sorry, the diff of this file is not supported yet
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
137940
37
3238