Skip to content

Commit

Permalink
Fix Gruntfile to delete contents of dist
Browse files Browse the repository at this point in the history
This allows the dist folder to be open while running grunt
  • Loading branch information
Bill Bagdon committed Apr 28, 2016
1 parent 8c6e9ea commit fb702e2
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 @@ -8,7 +8,7 @@ module.exports = function (grunt) {

clean: {
dist: {
src: ["dist/"]
src: ["dist/*"]
}
},

Expand Down Expand Up @@ -140,4 +140,4 @@ module.exports = function (grunt) {
grunt.registerTask('default', ['clean', 'imagemin', 'less', 'replace', 'cssmin', 'postcss']);


};
};

0 comments on commit fb702e2

Please sign in to comment.