Skip to main content

core-plugins

Published as @freesewing/core-plugins, our core plugins bundles the most commonly used FreeSewing plugins in one bundle that is loaded by the core library by default.

Specifically, loading this plugin will have the same effect as loading these plugins individually:

Installation

npm install @freesewing/core-plugins

Usage

The core plugins are loaded by default so there is nothing to be done to use them.

If you do not want to load the core plugins, pass noCorePlugins: true to your Design constructor:

const design = new Design({ 
parts: myParts,
noCorePlugins: true
})