diff options
author | codecalm <codecalm@gmail.com> | 2020-03-17 23:54:02 +0100 |
---|---|---|
committer | codecalm <codecalm@gmail.com> | 2020-03-17 23:54:02 +0100 |
commit | 3333294fbe3d292859588bcb71846c3065c2272f (patch) | |
tree | 8351488cc7675a553ef7be707c40072ab0b2085a | |
parent | gulp optimize fix, missed files (diff) | |
download | tabler-icons-3333294fbe3d292859588bcb71846c3065c2272f.tar.xz |
gulpfile fix
-rw-r--r-- | gulpfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js index 8ddd3ba0..406ef60b 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')) }); |