From 0fb5e891b3fde1e0f2999c309d1b266e6428dfa9 Mon Sep 17 00:00:00 2001 From: Paul Young Date: Mon, 23 Sep 2013 11:17:37 -0400 Subject: [PATCH] Fixed listener for watch task in grunt-contrib-jade example in README. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cbb745c..55741bd 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ var onChange = grunt.util._.debounce(function() { changedFiles = []; }, 200) -grunt.event.on('watch.jade', function(action, filepath) { +grunt.event.on('watch', function(action, filepath) { changedFiles.push(filepath); onChange(); });