mirror of
https://github.com/grafana/grafana.git
synced 2025-09-22 01:13:50 +08:00
22 lines
479 B
JavaScript
22 lines
479 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 %>'
|
|
}
|
|
};
|
|
};
|