cssmin.js 174 B

12345678910
  1. module.exports = function(config) {
  2. return {
  3. build: {
  4. expand: true,
  5. cwd: '<%= tempDir %>',
  6. src: '**/*.css',
  7. dest: '<%= tempDir %>'
  8. }
  9. };
  10. };