grafana/tasks/options/copy.js
2014-12-31 11:50:34 +01:00

12 lines
293 B
JavaScript

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', '!config.js'],
dest: '<%= tempDir %>'
}
};
};