grafana/tasks/options/ngAnnotate.js

13 lines
194 B
JavaScript
Raw Normal View History

2013-11-14 17:07:14 -06:00
module.exports = function(config) {
return {
build: {
2015-02-03 06:36:04 -06:00
expand: true,
2015-09-10 05:42:24 -05:00
cwd:'<%= genDir %>',
2013-11-14 17:07:14 -06:00
src: [
'app/**/*.js',
2013-11-14 17:07:14 -06:00
],
2015-09-10 05:42:24 -05:00
dest: '<%= genDir %>'
2013-11-14 17:07:14 -06:00
}
};
};