Exclude development files from zipped theme

This commit is contained in:
Sodbileg Gansukh 2021-05-05 07:53:10 +08:00
parent 4708987c39
commit 69feef6c46
1 changed files with 3 additions and 1 deletions

View File

@ -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/')