UNPKG

assemble-less

Version:

Compile LESS to CSS, with options for creating 'bundles', individual UI components and themes.

33 lines (20 loc) 556 B
# Feature Ideas ### libs Ability to automatically import Bootstrap's less, with the following options: * version: `string` ('2.3.1'), must be a version listed in the options. * mute: `true|false` * path: `srting` (optioal), only required if the path is different than the default. ### `options.libs` Instead of having to do this: ``` js // Project paths and files. bootstrap: grunt.file.readJSON('test/bootstrap.json'), ``` We could add an option to assemble-less to do this: ``` js less: { options: { libs: ['src/libs/*.json'] } } ```