#Less Bundle
Bundle all of your LESS files into a single file. Useful for large projects with multiple components utilizing their own LESS files.
var bundle = require('less-bundle');
bundle({
src: 'index.html',
dest: 'out.ts'
}, function (err) {
});
interface IConfig {
/**
* The index.html file used to find all the *.less files and
* build them in order. Starts at the <!-- less-bundle-start -->
* comment and ends at <!-- less-bundle-end -->
*/
src: string;
/**
* An array of destination file paths. Once the framework
* is built, it will be output to these paths.
*/
dest: Array<string>;
/**
* The version number used in conjunction with the license.
*/
version?: string;
/**
* The path to the license file to be added to the build as a
* comment. If a version is specified, the v.0.0.0 in the
* license will be replaced with the version.
*/
license?: string;
}