grafana/tasks/options/copy.js

12 lines
293 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,
2014-02-10 11:05:52 -06:00
src: ['**/*', '!**/*.less', '!config.js'],
2013-11-14 17:07:14 -06:00
dest: '<%= tempDir %>'
}
};
};