aboutsummaryrefslogtreecommitdiff
path: root/gulpfile.js
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2020-03-17 23:54:02 +0100
committercodecalm <codecalm@gmail.com>2020-03-17 23:54:02 +0100
commit3333294fbe3d292859588bcb71846c3065c2272f (patch)
tree8351488cc7675a553ef7be707c40072ab0b2085a /gulpfile.js
parentgulp optimize fix, missed files (diff)
downloadtabler-icons-3333294fbe3d292859588bcb71846c3065c2272f.tar.xz
gulpfile fix
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 8ddd3ba..406ef60 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -203,7 +203,7 @@ gulp.task('optimize', function (cb) {
gulp.task('build-zip', function(cb) {
const version = p.version;
- return gulp.src('icons/**/*')
+ return gulp.src('{icons/**/*,icons-png/**/*,tabler-sprite.svg}')
.pipe(zip(`${version}.zip`))
.pipe(gulp.dest('packages'))
});