From 0e77b0f96b54542b061b1f45798d7f50900f792d Mon Sep 17 00:00:00 2001 From: Jeff Avallone Date: Sun, 23 Nov 2014 16:17:01 -0500 Subject: [PATCH] Tweaking watchlist for markup rebuilds --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 1b309dc..4650994 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -5,7 +5,7 @@ var gulp = require('gulp'), compass = require('gulp-compass'); gulp.task('default', ['server'], function() { - gulp.watch('./src/**/*.html', ['markup']); + gulp.watch(['./src/**/*.html', './template.html'], ['markup']); gulp.watch('./src/**/*.scss', ['compass']); });