3.1.0 • Published 1 year ago

gulp-svg-fill v3.1.0

Weekly downloads
22
License
ISC
Repository
github
Last release
1 year ago

gulp-svg-fill


⚠️ No longer supported

This library is no longer being maintained and the git repo has been archived.


Illustration of an SVG shape being filled with a color

Gulp plugin that takes SVG files and fills their shapes with a single colour using svg-fill. It can also be configured with multiple colours, in which case it will output as many SVG files as there are colours, per single input SVG file.

Usage

Requirements

  • Node.js >= 14

Installation

npm install --save-dev gulp-svg-fill

Basic usage

In your gulpfile.js (using Gulp v4):

const gulp = require('gulp');
const svgFill = require('gulp-svg-fill');

function colorSvgs() {
  return gulp.src('src/**/*.svg')
    .pipe(svgFill({
      colors: {
        'Red': '#FF0000',
        'Green': '#00FF00',
        'Blue': '#0000FF'
      }
    }))
    .pipe(gulp.dest('dist/'));
}

module.exports = {
  default: colorSvgs
};

The above example will create 3 new SVG files - one filled in red, one in greeen and the other in blue - for each source SVG file found in the source directory.

For example, if the src/ folder contained logo.svg, then after running Gulp, the dist/ folder would contain:

  • logo_red.svg
  • logo_green.svg
  • logo_blue.svg

Options

gulp-svg-fill expects an options object to be passed in. It supports the following properties:

  • colors (mandatory): An object mapping color names to color values.
    • Must contain at least one color.
    • Values may be RGB hex strings or instances of Color (see color NPM package)
  • renameFn (optional): A function to generate per-color filenames.
    • Should have a signature of: (fileStem: string, colorName: string) => string
      • fileStem is the name part of the input SVG filepath - i.e. without the file extension. For example, if the full file path is path/to/fancy-logo.svg, then the file stem passed into the rename function will be fancy-logo.
      • colorName is the property name of a colour defined in colors. For instance, if your colors object looks like { 'Rebecca Purple': '#663399' }, then colorName would be Rebecca Purple.
    • If omittied, a default rename function is used which takes the original file stem and appends an underscore followed by the kebab-case version of the color name. E.g. if the input file is fancy-logo.svg, the output for the color Rebecca Purple would be fancy-logo_rebecca-purple.svg.

Development

Setup

Clone this repo and npm install its dependencies:

git clone git@github.com:c1rrus/gulp-svg-fill.git

cd svg-fill/

npm install

Building

npm run build

This will transpile the TypeScript source code (in the src/) directory and output the results to dist/.

For development convenience, you can alternatively watch the source files and automatically trigger rebuilds when they change:

npm run watch

Running tests

npm run test

We use Jest for the tests. Each module's unit tests is located alongside its [module name].ts file as [module name].test.ts.

Linting

To help keep code consistent and avoid common gotchas, we lint our code using typescript-eslint. To run it do:

npm run lint

Commit message formatting

All commit messages must follow the Conventional Commits standard as we use automated release tools that rely on this. Commit messages are linted to check this and your CI builds will fail if your messages don't conform.

To make composing suitable commit messages easier, this repo is Commitizen friendly. We strongly recommend using commitizen rather than using git directly. To use it, simply run:

npm run commit

...and follow the prompts in your terminal.

3.1.0

1 year ago

3.0.5

1 year ago

3.0.4

1 year ago

3.0.3

1 year ago

3.0.2

1 year ago

3.0.1

1 year ago

3.0.0

2 years ago

2.0.2

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.2

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.2.1

4 years ago

0.2.0

5 years ago

0.1.1

6 years ago

0.1.0

6 years ago