grafana/tasks/options/copy.js

20 lines
420 B
JavaScript
Raw Normal View History

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,
src: ['**/*', '!**/*.less'],
2013-11-14 17:07:14 -06:00
dest: '<%= tempDir %>'
},
2015-09-10 05:42:24 -05:00
public_to_gen: {
2015-09-10 04:26:40 -05:00
cwd: '<%= srcDir %>',
expand: true,
2015-09-10 04:26:40 -05:00
src: ['**/*', '!**/*.less'],
dest: '<%= genDir %>'
2013-11-14 17:07:14 -06:00
}
2013-11-14 17:07:14 -06:00
};
};