Skip to content

Commit

Permalink
Added .coffee --watch support. Closes #242
Browse files Browse the repository at this point in the history
fml
  • Loading branch information
tj committed Feb 3, 2012
1 parent 1f44293 commit 11ff9f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ exports.files = function(dir, ret){
path = join(dir, path);
if (fs.statSync(path).isDirectory()) {
exports.files(path, ret);
} else if (path.match(/\.js$/)) {
} else if (path.match(/\.(js|coffee)$/)) {
ret.push(path);
}
});
Expand Down

0 comments on commit 11ff9f0

Please sign in to comment.