Suppose I have two less files, first.less
.a {
.b {
font-size: 13px;
}
color: lime;
}
and second.less
@import "first.less";
.a {
font-family: sans-serif;
}
I would like a way of combining them into one, merging the trees:
.a {
.b {
font-size: 13px;
}
color: lime;
font-family: sans-serif;
}
So, something similar as compiling to .css
, but keeping the .less
structure. Is it possible to do via a command line tool, library or programmatically?