I have a central less file used to import all other style files:
@import '../..//Home/style/style.less';
@import '../../Crunching/style/crunching.less';
@import '../../components/Tab/tab.less';
@import './font.less';
@import '../../components/Spinner/style.less';
@import '../../style/style.less';
If I watch on this central file and it won't compile the changes on other files. But if I watch the whole directory, it will compile each single less file to a css file. Whether it support parsing the @import inside each less file to watch all the changes?
I have a central
lessfile used to import all other style files:If I watch on this central file and it won't compile the changes on other files. But if I watch the whole directory, it will compile each single
lessfile to acssfile. Whether it support parsing the@importinside each less file to watch all the changes?