Compile LESS files throughout a directory tree
npm install compilesscompiLESS
=========


Compiles LESS files throughout a directory tree and exports them to a specific directory.
Usage
-----
Install the package
``shell`
$ npm install compiless
Then in some file that is called upon app start (should only be called once):
`js`
require("compiless")(__dirname, {
"./src/less": "./public/css"
});
This will take any LESS files from the src/less directory, compile them, and export them to the public/css directory. So that they can be statically served.
Important notes
---------------
* Found directories will be recursively searched.
* If a directory does not exist, it will be created.
* Previous files at a path WILL be overwritten
Running tests
-------------
Clone this repo
`shell`
$ git clone https://github.com/ExPHAT/compiless.git
Install all of the dependencies
`shell`
$ npm install
Run the tests
`shell``
$ npm test