From 1c87a2b21b24271b0ede02fabb1df02514145b92 Mon Sep 17 00:00:00 2001 From: Adrian Lee Date: Sun, 16 Nov 2014 02:07:35 -0800 Subject: [PATCH] chore(Grunt): Add template watch task --- misc/grunt/contrib-watch.coffee | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/misc/grunt/contrib-watch.coffee b/misc/grunt/contrib-watch.coffee index 9d125b0..1fcea1b 100644 --- a/misc/grunt/contrib-watch.coffee +++ b/misc/grunt/contrib-watch.coffee @@ -25,5 +25,8 @@ module.exports = (grunt) -> files: ["src/css/*.styl", "vendor/vendor.styl"] tasks: ["stylus", "concat:css", "clean"] jade: - files: ["src/**/*.jade", "docs/*.jade"] + files: ["docs/*.jade"] tasks: ["jade", "replace:docs"] + template: + files: ["src/template/*.html"] + tasks: ["copy:template"]