Compile multiple themed LESS files to CSS.
This plugin requires Grunt ~0.4.0
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-less-themes --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-less-themes');
*This plugin was designed to work with Grunt 0.4.x. If you're still using grunt v0.3.x it's strongly recommended that you upgrade.
Run this task with the grunt lessThemes
command.
Task targets, files and options may be specified according to the grunt Configuring tasks guide.
This task is an extension of the grunt-contrib-less task. The options from that task are also compatible with this one.
Type: String
Default: 'generated'
This option defines the output directory for the grunt-less-theme
task.
Type: String
Default: 'themes'
This option defines the directory where all the themes are hosted
Type: Array
This option provides the grunt-less-themes
task with the names of each theme. This name is used to in finding the theme and in the generated file.
Type: String
Default: '{{theme}}'
This option is the placeholder string used in the output CSS filename. The name of each theme will replace this placeholder.
Type: String
Default: 'theme'
This option is the name of the theme file that is imported into each LESS file for compilation.
lessThemes: {
dev: {
options: {
output: 'path/to/output'
},
files: {
'example_{{themeName}}.css': 'simple.less'
}
}
}
lessThemes: {
dev: {
options: {
output: 'path/to/output',
themeDir: 'path/to/themes'
},
files: {
'core_{{themeName}}.css': ['core/*.less'],
'common_{{themeName}}.css': ['common/*.less'],
'components_{{themeName}}.css': ['components/*.less']
}
}
}