Match regex only if declaration is a variable
This commit is contained in:
parent
ff10297bf8
commit
9f77df0bff
1 changed files with 5 additions and 3 deletions
|
@ -55,9 +55,11 @@ function resolveDerivedVariable(decl, {variables, derive}) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function extractAlias(decl) {
|
function extractAlias(decl) {
|
||||||
const wholeVariable = decl.value.match(/var\(--(.+)\)/)?.[1];
|
if (decl.variable) {
|
||||||
if (decl.prop.startsWith("--") && wholeVariable) {
|
const wholeVariable = decl.value.match(/var\(--(.+)\)/)?.[1];
|
||||||
aliasMap.set(decl.prop, wholeVariable);
|
if (wholeVariable) {
|
||||||
|
aliasMap.set(decl.prop, wholeVariable);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue