Skip to content
This repository has been archived by the owner on Mar 22, 2020. It is now read-only.

Commit

Permalink
fix(gulp): Clean whole dist folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Wikiki committed Feb 10, 2018
1 parent 8b52ee1 commit e403d11
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions gulpfile.js
Expand Up @@ -114,8 +114,11 @@ gulp.task('clean:scripts', function(callback) {
callback();
});

// Deletes the entire _site directory.
gulp.task('clean', ['clean:scripts', 'clean:styles']);
// Deletes the entire dist directory.
gulp.task('clean', ['clean:scripts', 'clean:styles'], function(callback) {
del(paths.dest);
callback();
});

/**
* ----------------------------------------
Expand Down
File renamed without changes.

0 comments on commit e403d11

Please sign in to comment.