Exclude development files from zipped theme
This commit is contained in:
parent
4708987c39
commit
69feef6c46
1 changed files with 3 additions and 1 deletions
|
@ -80,7 +80,9 @@ function zipper(done) {
|
||||||
'**',
|
'**',
|
||||||
'!node_modules', '!node_modules/**',
|
'!node_modules', '!node_modules/**',
|
||||||
'!dist', '!dist/**',
|
'!dist', '!dist/**',
|
||||||
'!yarn-error.log'
|
'!yarn-error.log',
|
||||||
|
'!yarn.lock',
|
||||||
|
'!gulpfile.js'
|
||||||
]),
|
]),
|
||||||
zip(filename),
|
zip(filename),
|
||||||
dest('dist/')
|
dest('dist/')
|
||||||
|
|
Loading…
Reference in a new issue