ngAnnotate.js 484 B

123456789101112131415161718192021
  1. module.exports = function(config) {
  2. return {
  3. build: {
  4. expand: true,
  5. cwd:'<%= tempDir %>',
  6. src: [
  7. 'app/controllers/**/*.js',
  8. 'app/plugins/**/*.js',
  9. 'app/directives/**/*.js',
  10. 'app/services/**/*.js',
  11. 'app/filters/**/*.js',
  12. 'app/features/**/*.js',
  13. 'app/panels/**/*.js',
  14. 'app/routes/**/*.js',
  15. 'app/app.js',
  16. 'vendor/angular/**/*.js',
  17. ],
  18. dest: '<%= tempDir %>'
  19. }
  20. };
  21. };