Skip to content

Commit

Permalink
Fix clean task so that folders and extensionless files are also cleaned
Browse files Browse the repository at this point in the history
  • Loading branch information
nervo committed Jun 28, 2015
1 parent 3e81c7d commit 737603c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ module.exports = function(grunt) {

// clean
clean: {
docs: [ '<%= app.docs.dest %>/**/*.*' ],
dist: [ 'dist/**/*.*' ]
docs: [ '<%= app.docs.dest %>/**/*' ],
dist: [ 'dist/**/*' ]
},

// sass
Expand Down

0 comments on commit 737603c

Please sign in to comment.