From 630e22a763e2e1fe888581c78af5025631458a1b Mon Sep 17 00:00:00 2001 From: Pedro Reis Date: Mon, 27 Apr 2020 16:18:59 +0100 Subject: [PATCH] Fixed gulpfile clean function --- gulpfile.babel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.babel.js b/gulpfile.babel.js index f67c1b5..8537b64 100755 --- a/gulpfile.babel.js +++ b/gulpfile.babel.js @@ -51,7 +51,7 @@ function notification(message = '', status = 'success') { * Clean */ gulp.task('clean', () => ( - gulp.src([`${config.base.public}`, `${config.base.public}/js`], { + gulp.src([`${config.base.public}/js`], { read: false, }) .pipe(clean())