2013-11-14 17:07:14 -06:00
|
|
|
module.exports = function(config) {
|
|
|
|
return {
|
|
|
|
// copy source to temp, we will minify in place for the dist build
|
|
|
|
everything_but_less_to_temp: {
|
|
|
|
cwd: '<%= srcDir %>',
|
|
|
|
expand: true,
|
2015-09-09 12:34:24 -05:00
|
|
|
src: ['**/*', '!**/*.less'],
|
2013-11-14 17:07:14 -06:00
|
|
|
dest: '<%= tempDir %>'
|
2015-09-09 12:34:24 -05:00
|
|
|
},
|
|
|
|
|
2015-09-10 05:42:24 -05:00
|
|
|
public_to_gen: {
|
2015-09-10 04:26:40 -05:00
|
|
|
cwd: '<%= srcDir %>',
|
2015-09-09 12:34:24 -05:00
|
|
|
expand: true,
|
2015-09-10 04:26:40 -05:00
|
|
|
src: ['**/*', '!**/*.less'],
|
|
|
|
dest: '<%= genDir %>'
|
2013-11-14 17:07:14 -06:00
|
|
|
}
|
2015-09-09 12:34:24 -05:00
|
|
|
|
2013-11-14 17:07:14 -06:00
|
|
|
};
|
2014-12-31 04:50:34 -06:00
|
|
|
};
|