From 934f574df92ffc2b0339ad9a31a32b9efae56a4d Mon Sep 17 00:00:00 2001 From: PE Lord Date: Fri, 21 Dec 2018 09:33:40 -0500 Subject: [PATCH] fix(gulpfile) Empty directory --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 4ac3e959d9..5433d4f503 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -44,7 +44,7 @@ gulp.task('core:copyAssets', done => { gulp.task('common:copyAssets', done => { gulp .src('./projects/common/src/assets', { - base: './projects/common/src/assets/' + base: './projects/common/src/assets/', allowEmpty: true }) .pipe(gulp.dest('./dist/common/assets')); @@ -54,7 +54,7 @@ gulp.task('common:copyAssets', done => { gulp.task('auth:copyAssets', done => { gulp .src('./projects/auth/src/assets', { - base: './projects/auth/src/assets/' + base: './projects/auth/src/assets/', allowEmpty: true }) .pipe(gulp.dest('./dist/auth/assets'));