Skip to content

Commit

Permalink
don't fail if watched file is deleted
Browse files Browse the repository at this point in the history
  • Loading branch information
jhudson8 committed Jan 13, 2015
1 parent 683bf3e commit aabdeb3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ module.exports = function(gulp, options) {
}

var newCodeFilter = filter(function(file) {
if (!file.stat) return false;
if (file.stat.isDirectory()) {
return true;
}
Expand Down

0 comments on commit aabdeb3

Please sign in to comment.