From 2b725ccbdedb884c5480775e2f655ef80cf8412f Mon Sep 17 00:00:00 2001 From: Bill Date: Fri, 21 Apr 2017 13:36:44 -0700 Subject: [PATCH] add sass to run before spress-serve (#74) --- Gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gulpfile.js b/Gulpfile.js index a295f77..994689f 100644 --- a/Gulpfile.js +++ b/Gulpfile.js @@ -114,7 +114,7 @@ gulp.task('spress-watch', function() { }); }); -gulp.task('spress-serve', function () { +gulp.task('spress-serve', ['sass'], function () { return gulp.src(defaults.spress_home) .pipe(exec('fuser 4000/tcp --kill || true')) .pipe(exec(defaults.spress_bin + ' site:build --server --source=' + defaults.spress_home));