mirror of https://github.com/sipwise/kibana.git
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.
19 lines
442 B
19 lines
442 B
module.exports = function(config) {
|
|
return {
|
|
build: {
|
|
expand:true,
|
|
cwd:'<%= tempDir %>',
|
|
src: [
|
|
'app/controllers/**/*.js',
|
|
'app/directives/**/*.js',
|
|
'app/services/**/*.js',
|
|
'app/filters/**/*.js',
|
|
'app/panels/**/*.js',
|
|
'app/app.js',
|
|
'vendor/angular/**/*.js',
|
|
'vendor/elasticjs/elastic-angular-client.js'
|
|
],
|
|
dest: '<%= tempDir %>'
|
|
}
|
|
};
|
|
}; |