We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 931a709 commit 7f7d2feCopy full SHA for 7f7d2fe
index.js
@@ -125,9 +125,8 @@ function parse(code, done) {
125
126
// merge style
127
Object.keys(ruleResult).forEach(function (prop) {
128
-
129
// handle transition
130
- if (prop.indexOf('transition') === 0) {
+ if (prop.indexOf('transition') === 0 && prop !== 'transition') {
131
var realProp = prop.replace('transition', '')
132
realProp = realProp[0].toLowerCase() + realProp.slice(1)
133
jsonStyle['@TRANSITION'] = jsonStyle['@TRANSITION'] || {}
0 commit comments