csso.js 491 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. (function () {
  2. 'use strict';
  3. /**
  4. * Defining task configurations.
  5. */
  6. var
  7. task = {
  8. compress: {
  9. options: {
  10. report: 'gzip',
  11. restructure: false,
  12. banner: '<%= banner %>'
  13. },
  14. files: [{
  15. expand: true,
  16. src: [
  17. 'dist/**/*.css',
  18. '!**/*.min.css'
  19. ],
  20. ext: '.min.css'
  21. }]
  22. }
  23. };
  24. /**
  25. * Exporting task.
  26. */
  27. module.exports = task;
  28. })();