ngAnnotate.js 194 B

123456789101112
  1. module.exports = function(config) {
  2. return {
  3. build: {
  4. expand: true,
  5. cwd:'<%= genDir %>',
  6. src: [
  7. 'app/**/*.js',
  8. ],
  9. dest: '<%= genDir %>'
  10. }
  11. };
  12. };