You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kibana/tasks/options/copy.js

11 lines
290 B

module.exports = function(config) {
return {
// copy source to temp, we will minify in place for the dist build
almost_everything_to_temp: {
cwd: '<%= srcDir %>',
expand: true,
src: ['**/*', '!**/*.less', '!test/**/*'],
dest: '<%= tempDir %>'
}
};
};