1
0
Fork 0
freesewing/markdown/dev/reference/plugins/versionfree-svg/en.md
2022-02-19 08:04:25 +01:00

804 B

title
@freesewing/versionfree-svg

The @freesewing/plugin-versionfree-svg plugin suppresses the inclusion of the FreeSewing version number in SVG output. This allows diffing pattern output between versions to check for any differences in the output between different versions of FreeSewing.

Installation

npm install @freesewing/plugin-bartack

Usage

Like all run-time plugins, you load them by by passing them to the use() method of an instatiated pattern.

That method is chainable, so if you have multiple plugins you can just chain them together.

import Aaron from "@freesewing/aaron";
import versionfreeSvg from "@freesewing/plugin-versionfree-svg";

const pattern = new Aaron().use(versionfreeSvg);