From 4f43cb21d987547586943193bebb992aec647c2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Pluta?= Date: Wed, 21 Mar 2018 14:58:35 +0100 Subject: [PATCH] Add 'sass' task to first-time build --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 6f4abce..675572b 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -101,7 +101,7 @@ gulp.task('clean', function() { }); gulp.task('build', function() { - sequence('clean', ['html', 'js', 'css', 'img']); + sequence('clean', 'sass', ['html', 'js', 'css', 'img']); }); gulp.task('default', sequence('build', 'serve'));