Socket
Socket
Sign inDemoInstall

gulp-fm-icon-converter

Package Overview
Dependencies
345
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gulp-fm-icon-converter

A gulp module to automatically add the fm_fill class to an svg icon


Version published
Weekly downloads
2
decreased by-60%
Maintainers
1
Install size
144 MB
Created
Weekly downloads
 

Readme

Source

Gulp FM Icon Converter

This tool is used to help convert svg icons into filemaker compatable svg icons. It various things such as fm_fill and a grey fill to enable use in filemaker.

Getting Started

Installation

npm install --save gulp gulp-fm-icon-converter
'use strict';

const gulp = require('gulp');
const { convert, ensureDirectories, files } = require('gulp-fm-icon-converter');

const destination = 'fm-icons';
const source = 'standard-icons';

gulp.task('create-directories', ensureDirectories(source, destination));

gulp.task('convert-icons', () =>
  gulp
    .src(files(source))
    .pipe(convert())
    .pipe(gulp.dest(destination))
);

gulp.task('watch', () => gulp.watch(files(source), ['convert-icons']));

gulp.task('default', ['create-directories', 'watch']);

Authors

  • Lui de la Parra - Initial work

See also the list of contributors who participated in this project.

Dependencies

  • gulp-cheerio: Manipulate HTML and XML files with Cheerio in Gulp.

License

MIT © Lui de la Parra

Acknowledgments

  • Hat tip to Matt Petrowski for his contributions to all things FM.
  • Hat tip to Todd Geist for his hosting of this tool at fmsvg.com

Keywords

FAQs

Last updated on 19 Feb 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc