Create an entry point for a directory of LESS files.
Running `less-index ./module` over a directory like this:
./module
├── mixins.less
├── settings.less
└── styles.less
…will write the following content:
@import "./module/mixins";
@import "./module/settings";
@import "./module/styles";
…to the file `./module.less`.
You can then `@import "./module";` from another LESS file and you get the
whole lot.
Files without the extension `.less` are ignored.
OPTIONS
-f --force Overwrite files without prompting.
-h --help Display this help text (--help) or short usage info (-h).
less-index
Create an entry point for a directory of LESS files.
Installation
Usage
SYNOPSIS
DESCRIPTION
OPTIONS