From 69feef6c466a1020dbb13ca985c3be42baf4023d Mon Sep 17 00:00:00 2001 From: Sodbileg Gansukh Date: Wed, 5 May 2021 07:53:10 +0800 Subject: [PATCH] Exclude development files from zipped theme --- gulpfile.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index f134db1..18fca40 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -80,7 +80,9 @@ function zipper(done) { '**', '!node_modules', '!node_modules/**', '!dist', '!dist/**', - '!yarn-error.log' + '!yarn-error.log', + '!yarn.lock', + '!gulpfile.js' ]), zip(filename), dest('dist/')