Closed
Description
bug report
I write a compile tool for my project, it depend less.
my project style folder and files likes
- styles
_utils.less
index.less
and index.less
content is
@import "./utils"
I use less api to compile the less files like
let less=require('less');
//....
less.render(indexContent,options,(err,result)=>{
console.log(result.css)
});
when i change _utils.less
content , the above code will automatically execute
but since 3.0.x , when i change _utils.less
content ,the result.css
is the first time result, whatever change how many times.
but 2.7.x is ok, when i change _utils.less
content ,the result.css
also changed.