Skip to content

Commit

Permalink
Feng shui.
Browse files Browse the repository at this point in the history
  • Loading branch information
cowboy committed Sep 5, 2012
1 parent 046b30f commit c77c676
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/grunt/file.js
Expand Up @@ -94,9 +94,6 @@ file.isMatch = function() {
return file.match.apply(file, arguments).length > 0;
};

// List of changed / deleted file paths, generated by the watch task.
file.watchFiles = {changed: null, deleted: null};

// Return an array of all file paths that match the given wildcard patterns.
file.expand = function() {
var args = grunt.util.toArray(arguments);
Expand Down Expand Up @@ -341,3 +338,6 @@ file.isFile = function() {
var filepath = path.join.apply(path, arguments);
return file.exists(filepath) && fs.statSync(filepath).isFile();
};

// List of changed / deleted file paths, generated by the watch task.
file.watchFiles = {changed: null, deleted: null};

0 comments on commit c77c676

Please sign in to comment.