123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- var gulp = require('gulp');
- var gutil = require('gulp-util');
- var rename = require('gulp-rename');
- var svgstore = require('gulp-svgstore');
- var svgmin = require('gulp-svgmin');
- var cheerio = require('gulp-cheerio');
- var through2 = require('through2');
- var iconsource = 'public/assets/images/icons/*.svg'
- gulp.task('svgstore', function () {
- return gulp
- .src(iconsource)
- .pipe(rename({prefix: 'icon-'}))
- .pipe(svgmin({
- js2svg: {
- pretty: true
- }
- }))
- .pipe(cheerio({
- run: function ($) {
- // remove green-screen color
- $('[fill="#50E3C2"]').removeAttr('fill').parents('[fill="none"]').removeAttr('fill');
- $('[fill="#BD0FE1"]').attr('fill', 'currentColor').parents('[fill="none"]').removeAttr('fill');
- // color in Sketch changed slightly BD0FE1 -> BD10E0
- $('[fill="#BD10E0"]').attr('fill', 'currentColor').parents('[fill="none"]').removeAttr('fill');
- },
- parserOptions: { xmlMode: true }
- }))
- .pipe(svgstore())
- .pipe(through2.obj(function (file, encoding, cb) {
- var $ = file.cheerio;
- var data = $('svg > symbol').map(function () {
- var viewBox = $(this).attr('viewBox').split(" ")
- return [
- '.'+ $(this).attr('id') + ' {' +
- ' width: ' + viewBox[2] + 'px;' +
- ' height: ' + viewBox[3] + 'px; ' +
- '}'
- ];
- }).get();
- var cssFile = new gutil.File({
- path: '../../../app/assets/stylesheets/svg-dimensions.css',
- contents: new Buffer(data.join("\n"))
- });
- this.push(cssFile);
- this.push(file);
- cb();
- }))
- .pipe(gulp.dest('public/assets/images'));
- });
- gulp.task('watch', function () {
- gulp.watch(iconsource, ['svgstore']);
- });
- gulp.task('default', ['svgstore', 'watch']);
|