mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 21:19:28 -06:00
22 lines
480 B
JavaScript
22 lines
480 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/features/**/*.js',
|
|
'app/panels/**/*.js',
|
|
'app/routes/**/*.js',
|
|
'plugins/**/*.js',
|
|
'app/app.js',
|
|
'vendor/angular/**/*.js',
|
|
],
|
|
dest: '<%= tempDir %>'
|
|
}
|
|
};
|
|
};
|