From 9c1792cd2504159e474439b1b17e459ecde90ae7 Mon Sep 17 00:00:00 2001 From: Nic Jansma Date: Wed, 19 Mar 2014 00:01:07 -0400 Subject: [PATCH] Lint fixes --- handlebars-precompiler.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/handlebars-precompiler.js b/handlebars-precompiler.js index deabb78..a476463 100644 --- a/handlebars-precompiler.js +++ b/handlebars-precompiler.js @@ -147,10 +147,11 @@ exports.watchDir = function(dir, outfile, extensions, silent) { var file = files[i]; if (regex.test(file)) { fs.watch(file, compileOnChange); - if (!silent) + if (!silent) { console.log('[watching] ' + file); + } } } } }); -} +};