From e77c773b8c7006d5427006e83fa4986aff6b26fd Mon Sep 17 00:00:00 2001 From: Max Lynch Date: Sat, 21 Mar 2015 00:07:24 -0500 Subject: [PATCH] feat(build): build demos on html change in components --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 11033303f3..775b69a076 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -26,7 +26,7 @@ gulp.task('watch', ['default'], function() { var serveStatic = require('serve-static'); var port = 9000; - gulp.watch(buildConfig.src.html, ['html']); + gulp.watch(buildConfig.src.html, ['html', 'demo']); gulp.watch(buildConfig.src.js, ['js']); gulp.watch(buildConfig.src.scss, ['sass']); gulp.watch(buildConfig.src.playgroundJs, ['playgroundJs']);