Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 580 Bytes

README.md

File metadata and controls

33 lines (21 loc) · 580 Bytes

gulp-clean-sketch

Cleanup Sketch SVG files

Issues with the output should be reported on the clean-sketch issue tracker.

Install

$ npm install --save-dev gulp-clean-sketch

Usage

var cleanSketch = require('gulp-clean-sketch');

gulp.task('icons', function() {
  return gulp.src('assets/*.svg')
    .pipe(cleanSketch())
    .pipe(gulp.dest('dist/icons'));
});

API

cleanSketch()

Removes Sketch namespaces and metadata.

License

MIT © Overblog