Skip to main content

Part dependencies

Part dependencies control the order in which parts are drafted. FreeSewing will make sure to draft all of a part's dependencies before drafting the part itself.

warning

Even though inherited parts are automatically included in a part's dependencies, do not confuse part dependencies with part inheritance.

Part dependencies are configured with the after keyword. Let's look at an example:

import { otherPart } from './otherpart.mjs'

export const myPart = {
name: 'example.myPart',
after: otherPart,
draft: function ({ part }) {
// Design part here
return part
}
}
tip

Refer to the part documentation on dependencies for all details.