From ec02d5868cb8ccc07cfb015c000773b1386c921c Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 24 Feb 2016 16:45:28 +0200 Subject: [PATCH] Fix scss watcher. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 2d49e57f8..421306a4d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -66,5 +66,5 @@ gulp.task("dist", function(next) { // Watch gulp.task("default", ["styles-dev"], function () { - gulp.watch(paths.scss, ["autoprefixer"]); + gulp.watch(paths.scss, ["styles-dev"]); });