From ebd835a8a9e753052b2e080f0d904c509f98a3a5 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Sun, 21 Feb 2016 16:14:55 +0200 Subject: [PATCH] Remove clean task. --- gulpfile.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 4ee24e0610..63b527d961 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -14,11 +14,6 @@ paths.dist = "resources/public/"; paths.scss = paths.app + "styles/**/*.scss"; -// Delete the dist directory -gulp.task("clean", function () { - return gulp.src(paths.dist).pipe(clean()); -}); - gulp.task("scss", function () { return gulp.src(paths.app + "styles/main.scss") .pipe(plumber())