From 9bfef39612e371ca59dca9a4fab66760e79a21c4 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 16 Sep 2014 16:16:25 +0200 Subject: [PATCH] An other minor change on gulpfile in an other attempt to fix it. --- gulpfile.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.coffee b/gulpfile.coffee index f4d6bc96..b51f0dcc 100644 --- a/gulpfile.coffee +++ b/gulpfile.coffee @@ -99,7 +99,7 @@ gulp.task "jade-watch", -> .pipe(cache("jade")) .pipe(jadeInheritance({basedir: './app'})) .pipe(jade({pretty: true})) - .pipe(gulp.dest("#{paths.dist}/partials")) + .pipe(gulp.dest("#{paths.dist}")) gulp.task "template", -> gulp.src("#{paths.app}/index.jade") @@ -249,7 +249,7 @@ gulp.task "deploy", [ # The default task (called when you run gulp from cli) gulp.task "default", [ - "jade-watch", + "jade-deploy", "template", "styles-watch", "copy",