aboutsummaryrefslogtreecommitdiff
path: root/gulpfile.js
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2020-03-21 22:15:06 +0100
committercodecalm <codecalm@gmail.com>2020-03-21 22:15:06 +0100
commitd74bcb00743c5cfdbef1e49c211c1b5d53f81c26 (patch)
tree9f626c8a5625e506dfb002ab22429eb8423c7ad8 /gulpfile.js
parentdiff changelog (diff)
parentsprite-nostroke new file, version 1.0.2 (diff)
downloadtabler-icons-d74bcb00743c5cfdbef1e49c211c1b5d53f81c26.tar.xz
Merge branches 'dev' and 'master' of https://github.com/tabler/tabler-icons into dev
 Conflicts:  .github/icons.png  package.json
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 4e01a03..ab729be 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -91,6 +91,7 @@ gulp.task('icons-sprite', function (cb) {
let svg = `<svg xmlns="http://www.w3.org/2000/svg"><defs>${svgContent}</defs></svg>`;
fs.writeFileSync('tabler-sprite.svg', svg);
+ fs.writeFileSync('tabler-sprite-nostroke.svg', svg.replace(/stroke-width="2"\s/g, ''));
cb();
});
});
@@ -189,7 +190,7 @@ gulp.task('optimize', function (cb) {
.replace(/><\/(polyline|line|rect|circle|path)>/g, '/>')
.replace(/rx="([^"]+)"\s+ry="\1"/g, 'rx="$1"')
.replace(/\s?\/>/g, ' />')
- .replace(/\n\s*<(line|circle|path|polyline)/g, "\n <$1")
+ .replace(/\n\s*<(line|circle|path|polyline|rect)/g, "\n <$1")
.replace(/polyline points="([0-9.]+)\s([0-9.]+)\s([0-9.]+)\s([0-9.]+)"/g, 'line x1="$1" y1="$2" x2="$3" y2="$4"')
.replace(/a\s?([0-9.]+)\s([0-9.]+)\s([0-9.]+)\s?([0-1])\s?([0-1])\s?(-?[0-9.]+)\s?(-?[0-9.]+)/g, 'a$1 $2 $3 $4 $5 $6 $7')
.replace(/\n\n+/g, "\n");
@@ -334,7 +335,7 @@ gulp.task('changelog-diff', function(cb) {
gulp.task('build-zip', function() {
const version = p.version;
- return gulp.src('{icons/**/*,icons-png/**/*,tabler-sprite.svg}')
+ return gulp.src('{icons/**/*,icons-png/**/*,tabler-sprite.svg,tabler-sprite-nostroke.svg}')
.pipe(zip(`tabler-icons-${version}.zip`))
.pipe(gulp.dest('packages'))
});
@@ -371,4 +372,4 @@ gulp.task('svg-to-png', gulp.series('build-jekyll', 'clean-png', async (cb) => {
cb();
}));
-gulp.task('build', gulp.series('build-jekyll', 'build-copy', 'build-zip'));
+gulp.task('build', gulp.series('optimize', 'build-jekyll', 'build-copy', 'icons-sprite', 'icons-preview', 'build-zip'));