mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 13:09:22 -06:00
19 lines
442 B
JavaScript
19 lines
442 B
JavaScript
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 %>'
|
|
}
|
|
};
|
|
}; |