summaryrefslogtreecommitdiff
path: root/gulpfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 974d3fd..612ebee 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -30,6 +30,7 @@
30 'css': dir.src + '/css/**/*.css', 30 'css': dir.src + '/css/**/*.css',
31 'js': dir.src + '/js/**/*.js', 31 'js': dir.src + '/js/**/*.js',
32 'talks': dir.src + '/talks', 32 'talks': dir.src + '/talks',
33 'talkindex': dir.src + '/talks/index.hbs',
33 'posts': dir.src + '/posts', 34 'posts': dir.src + '/posts',
34 'images': [ 35 'images': [
35 dir.src + '/**/*.png', 36 dir.src + '/**/*.png',
@@ -320,7 +321,7 @@
320 gulp.task('serve', function () { 321 gulp.task('serve', function () {
321 gulp.watch(paths.html, ['package:html']); 322 gulp.watch(paths.html, ['package:html']);
322 gulp.watch(paths.images, ['package:images']); 323 gulp.watch(paths.images, ['package:images']);
323 gulp.watch(paths.hbs, ['package:talks']); 324 gulp.watch(paths.talks, ['package:talks']);
324 gulp.watch(paths.css, ['package:css']); 325 gulp.watch(paths.css, ['package:css']);
325 gulp.watch(paths.js, ['package:js']); 326 gulp.watch(paths.js, ['package:js']);
326 gulp.watch(paths.posts, ['package:posts']); 327 gulp.watch(paths.posts, ['package:posts']);