I have a directory full of less css files. What is the best way to compile them to normal css? (for deployment)
Id like to run a command as follows:
lessc -r less/ css/
where lessc is the less compiler (installed via node package manager)
The way to do this is what bootstrap does - have a file which imports all the others and compile that.
@import "variables.less";
@import "mixins.less";