uglify.js 353 B

12345678910111213141516
  1. module.exports = function(config) {
  2. return {
  3. dest: {
  4. expand: true,
  5. src: ['**/*.js', '!config.js', '!app/dashboards/*.js'],
  6. dest: '<%= destDir %>',
  7. cwd: '<%= destDir %>',
  8. options: {
  9. quite: true,
  10. compress: true,
  11. preserveComments: false,
  12. banner: '<%= meta.banner %>'
  13. }
  14. }
  15. };
  16. };