Skip to content

Commit

Permalink
Merge pull request #924 from mck-/master
Browse files Browse the repository at this point in the history
Add Literate CoffeScript support for --watch mode
  • Loading branch information
tj committed Jul 10, 2013
2 parents 8e7f3d5 + 4415611 commit b19ce4e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/utils.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

/**
* Module dependencies.
*/
Expand Down Expand Up @@ -163,7 +162,7 @@ exports.files = function(dir, ret){
path = join(dir, path);
if (fs.statSync(path).isDirectory()) {
exports.files(path, ret);
} else if (path.match(/\.(js|coffee)$/)) {
} else if (path.match(/\.(js|coffee|litcoffee|coffee.md)$/)) {
ret.push(path);
}
});
Expand Down

0 comments on commit b19ce4e

Please sign in to comment.