ngmin.js 442 B

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