Tweaking watchlist for markup rebuilds

This commit is contained in:
Jeff Avallone 2014-11-23 16:17:01 -05:00
parent fcdc3f8ecd
commit 0e77b0f96b
1 changed files with 1 additions and 1 deletions

View File

@ -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']);
});