| 12345678910111213141516 |
- module.exports = function(config) {
- return {
- dest: {
- expand: true,
- src: ['**/*.js', '!config.js', '!app/dashboards/*.js'],
- dest: '<%= destDir %>',
- cwd: '<%= destDir %>',
- options: {
- quite: true,
- compress: true,
- preserveComments: false,
- banner: '<%= meta.banner %>'
- }
- }
- };
- };
|