mirror of
https://github.com/grafana/grafana.git
synced 2025-02-14 09:33:34 -06:00
22 lines
484 B
JavaScript
22 lines
484 B
JavaScript
module.exports = function(config) {
|
|
return {
|
|
build: {
|
|
expand: true,
|
|
cwd:'<%= tempDir %>',
|
|
src: [
|
|
'app/controllers/**/*.js',
|
|
'app/plugins/**/*.js',
|
|
'app/directives/**/*.js',
|
|
'app/services/**/*.js',
|
|
'app/filters/**/*.js',
|
|
'app/features/**/*.js',
|
|
'app/panels/**/*.js',
|
|
'app/routes/**/*.js',
|
|
'app/app.js',
|
|
'vendor/angular/**/*.js',
|
|
],
|
|
dest: '<%= tempDir %>'
|
|
}
|
|
};
|
|
};
|