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

/*eslint strict: ["error", "global"]*/
'use strict';
//=======================================================
// Include Our Plugins
//=======================================================
var del = require('del');
// Export our tasks.
module.exports = {
// Clean style guide files.
styleguide: function() {
// You can use multiple globbing patterns as you would with `gulp.src`
return del([
'./dist/style-guide/*'
], {force: true});
},
// Clean CSS files.
css: function() {
return del([
'./dist/css/*'
], {force: true});
},
// Clean JS files.
js: function() {
return del([
'./dist/js/*'
], {force: true});
}
};