Drupal 8 Site using Vue
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
684 B

  1. /*eslint strict: ["error", "global"]*/
  2. 'use strict';
  3. //=======================================================
  4. // Include Our Plugins
  5. //=======================================================
  6. var del = require('del');
  7. // Export our tasks.
  8. module.exports = {
  9. // Clean style guide files.
  10. styleguide: function() {
  11. // You can use multiple globbing patterns as you would with `gulp.src`
  12. return del([
  13. './dist/style-guide/*'
  14. ], {force: true});
  15. },
  16. // Clean CSS files.
  17. css: function() {
  18. return del([
  19. './dist/css/*'
  20. ], {force: true});
  21. },
  22. // Clean JS files.
  23. js: function() {
  24. return del([
  25. './dist/js/*'
  26. ], {force: true});
  27. }
  28. };