1
0
Fork 0
freesewing/markdown/dev/reference/plugins/versionfree-svg/en.md

29 lines
804 B
Markdown
Raw Normal View History

2021-12-28 09:09:27 +01:00
---
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
```sh
npm install @freesewing/plugin-bartack
```
## Usage
Like all [run-time plugins](/guides/plugins/types-of-plugins#run-time-plugins), you
2022-02-19 08:04:25 +01:00
load them by by passing them to the `use()` method of an instatiated pattern.
2021-12-28 09:09:27 +01:00
That method is chainable, so if you have multiple plugins you can just chain them together.
```js
import Aaron from "@freesewing/aaron";
import versionfreeSvg from "@freesewing/plugin-versionfree-svg";
const pattern = new Aaron().use(versionfreeSvg);
```