From 0e0589cb04890bac1eadb9bd502a6bcd631aa49c Mon Sep 17 00:00:00 2001 From: Jakub Maciej Chmielewski <53061612+chmielulu@users.noreply.github.com> Date: Wed, 17 Jun 2020 20:07:34 +0200 Subject: [PATCH] Disabled yarn-error.log file export to zip (#725) --- gulpfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 45d7035..088d79f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -81,7 +81,8 @@ function zipper(done) { src([ '**', '!node_modules', '!node_modules/**', - '!dist', '!dist/**' + '!dist', '!dist/**', + '!yarn-error.log' ]), zip(filename), dest('dist/')