less2sass
less2sass copied to clipboard
interpolation issue
less code
@media @desk{
padding-left: 20px;
}
is converted to this scss code
@media $desk{
padding-left: 20px;
}
instead of
@media #{$desk}{
padding-left: 20px;
}
@Broutard thanks for the notice about this. A regex replacement to handle this would be appreciated, if not a PR.
Maybe
'@(?!font-face|import|media|keyframes|-|{)(\w+)(?=\s*[{|@])' => '#{$\\1}'
https://regex101.com/r/dBwcAs/3