copy.js 278 B

1234567891011
  1. module.exports = function(config) {
  2. return {
  3. // copy source to temp, we will minify in place for the dist build
  4. everything_but_less_to_temp: {
  5. cwd: '<%= srcDir %>',
  6. expand: true,
  7. src: ['**/*', '!**/*.less'],
  8. dest: '<%= tempDir %>'
  9. }
  10. };
  11. };