Skip to content

Commit

Permalink
#1: simplify “clean” task
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanfalkowski committed Mar 15, 2019
1 parent 72f54c6 commit e1f15d8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ var isSilent = (arguments.silent) ? true : false;
* @return {promise}
*/
function clean () {
var task = config.task.clean;
return del(task.pathsToDelete);
return del(config.task.clean.pathsToDelete);
};


Expand Down

0 comments on commit e1f15d8

Please sign in to comment.