From 130bd9fe0bf069523b58c6a70895e7154839588b Mon Sep 17 00:00:00 2001 From: squidfunk Date: Fri, 21 Oct 2016 21:13:47 +0200 Subject: [PATCH] Resolved double-clean from build process --- Gulpfile.babel.js | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/Gulpfile.babel.js b/Gulpfile.babel.js index 3df904861..074bccfa7 100755 --- a/Gulpfile.babel.js +++ b/Gulpfile.babel.js @@ -284,15 +284,11 @@ gulp.task("tests:unit:watch", * Build assets and documentation */ gulp.task("build", [ - "clean" -], () => { - return gulp.start([ - "assets:build", - "views:build" - ].concat(args.mkdocs - ? "mkdocs:build" - : [])) -}) + "assets:build", + "views:build" +].concat(args.mkdocs + ? "mkdocs:build" + : [])) /* * Clean assets and documentation