grafana/tasks/options/ngAnnotate.js
2015-02-03 13:36:04 +01:00

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 %>'
}
};
};