diff --git a/designs/albert/src/front.mjs b/designs/albert/src/front.mjs index 9fa112f6fd6..1d33fea459c 100644 --- a/designs/albert/src/front.mjs +++ b/designs/albert/src/front.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - export const front = { name: 'albert.front', measurements: ['chest', 'hpsToWaistBack', 'waist', 'waistToKnee', 'hips'], @@ -9,7 +7,6 @@ export const front = { bibLength: { pct: 75, min: 0, max: 90, menu: 'style' }, lengthBonus: { pct: 0, min: -20, max: 25, menu: 'style' }, }, - plugins: pluginBundle, draft: ({ options, measurements, diff --git a/designs/bee/src/neck-tie.mjs b/designs/bee/src/neck-tie.mjs index d49167eff88..aa012accbfd 100644 --- a/designs/bee/src/neck-tie.mjs +++ b/designs/bee/src/neck-tie.mjs @@ -1,5 +1,4 @@ import { pctBasedOn } from '@freesewing/core' -import { pluginBundle } from '@freesewing/plugin-bundle' export const neckTie = { name: 'bee.neckTie', @@ -24,7 +23,6 @@ export const neckTie = { neckTieColours: { dflt: 'one', list: ['one', 'two'], menu: 'style' }, reversible: { bool: false, menu: 'style' }, }, - plugins: [pluginBundle], draft: ({ store, sa, diff --git a/designs/bella/src/back.mjs b/designs/bella/src/back.mjs index dddc160a8cf..0d0fba1afc4 100644 --- a/designs/bella/src/back.mjs +++ b/designs/bella/src/back.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - export const back = { name: 'bella.back', measurements: [ @@ -49,7 +47,6 @@ export const back = { frontShoulderWidth: { pct: 95, max: 98, min: 92, menu: 'advanced' }, highBustWidth: { pct: 86, max: 92, min: 80, menu: 'advanced' }, }, - plugins: [pluginBundle], draft: ({ store, sa, diff --git a/designs/benjamin/src/base.mjs b/designs/benjamin/src/base.mjs index a19be9acb25..18df201f1c5 100644 --- a/designs/benjamin/src/base.mjs +++ b/designs/benjamin/src/base.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function draftBenjaminBase({ store, sa, @@ -229,6 +227,5 @@ export const base = { }, ribbonWidth: { pct: 6, min: 5, max: 8, menu: 'style' }, }, - plugins: [pluginBundle], draft: draftBenjaminBase, } diff --git a/designs/bob/src/bib.mjs b/designs/bob/src/bib.mjs index 614b412f99c..b394076a7ea 100644 --- a/designs/bob/src/bib.mjs +++ b/designs/bob/src/bib.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - export const bib = { name: 'bob.bib', measurements: [], @@ -10,7 +8,6 @@ export const bib = { lengthRatio: { pct: 75, min: 55, max: 85, menu: 'fit' }, headSize: { pct: 100, min: 10, max: 200, snap: 5, menu: 'size' }, }, - plugins: [pluginBundle], draft: ({ Point, points, diff --git a/designs/breanna/src/back.mjs b/designs/breanna/src/back.mjs index a7524f7cb2d..aab87535665 100644 --- a/designs/breanna/src/back.mjs +++ b/designs/breanna/src/back.mjs @@ -1,5 +1,4 @@ import { base } from './base.mjs' -import { pluginBundle } from '@freesewing/plugin-bundle' function draftBreannaBack({ sa, @@ -291,6 +290,5 @@ function draftBreannaBack({ export const back = { from: base, name: 'breanna.back', - plugins: [pluginBundle], draft: draftBreannaBack, } diff --git a/designs/brian/src/base.mjs b/designs/brian/src/base.mjs index c290a94ef15..e01e3e64bee 100644 --- a/designs/brian/src/base.mjs +++ b/designs/brian/src/base.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { withCondition as bustPlugin } from '@freesewing/plugin-bust' export const base = { @@ -37,7 +36,7 @@ export const base = { frontArmholeDeeper: { pct: 0.2, min: 0, max: 0.5, menu: 'advanced' }, shoulderSlopeReduction: { pct: 0, min: 0, max: 80, menu: 'advanced' }, }, - plugins: [pluginBundle, bustPlugin], + plugins: [bustPlugin], draft: ({ measurements, options, diff --git a/designs/bruce/src/back.mjs b/designs/bruce/src/back.mjs index fe55dc93a25..2132530a840 100644 --- a/designs/bruce/src/back.mjs +++ b/designs/bruce/src/back.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { init } from './init.mjs' function draftBruceBack({ @@ -185,6 +184,5 @@ export const back = { legStretch: { pct: 40, min: 25, max: 45, menu: 'fit' }, backRise: { pct: 5, min: 0, max: 10, menu: 'fit' }, }, - plugins: [pluginBundle], draft: draftBruceBack, } diff --git a/designs/cathrin/src/panel1.mjs b/designs/cathrin/src/panel1.mjs index 94600f9f689..59d069f9a0e 100644 --- a/designs/cathrin/src/panel1.mjs +++ b/designs/cathrin/src/panel1.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { panels } from './panels.mjs' import { draftPanel1ab } from './panel1ab.mjs' @@ -76,6 +75,5 @@ function draftCathrinPanel1(params) { export const panel1 = { name: 'cathrin.panel1', from: panels, - plugins: [pluginBundle], draft: draftCathrinPanel1, } diff --git a/designs/cathrin/src/panel2.mjs b/designs/cathrin/src/panel2.mjs index a22804b51c2..9e897cfbcdb 100644 --- a/designs/cathrin/src/panel2.mjs +++ b/designs/cathrin/src/panel2.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { panels } from './panels.mjs' function draftCathrinPanel2({ macro, sa, points, paths, Point, complete, paperless, part }) { @@ -75,6 +74,5 @@ function draftCathrinPanel2({ macro, sa, points, paths, Point, complete, paperle export const panel2 = { name: 'cathrin.panel2', from: panels, - plugins: [pluginBundle], draft: draftCathrinPanel2, } diff --git a/designs/cathrin/src/panel3.mjs b/designs/cathrin/src/panel3.mjs index b6c4ee48958..9a0192b7fe3 100644 --- a/designs/cathrin/src/panel3.mjs +++ b/designs/cathrin/src/panel3.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { panels } from './panels.mjs' function draftCathrinPanel3({ macro, sa, points, paths, Point, complete, paperless, part }) { @@ -75,6 +74,5 @@ function draftCathrinPanel3({ macro, sa, points, paths, Point, complete, paperle export const panel3 = { name: 'cathrin.panel3', from: panels, - plugins: [pluginBundle], draft: draftCathrinPanel3, } diff --git a/designs/cathrin/src/panel4.mjs b/designs/cathrin/src/panel4.mjs index 439ebc52976..24bca463253 100644 --- a/designs/cathrin/src/panel4.mjs +++ b/designs/cathrin/src/panel4.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { panels } from './panels.mjs' function draftCathrinPanel4({ @@ -89,6 +88,5 @@ function draftCathrinPanel4({ export const panel4 = { name: 'cathrin.panel4', from: panels, - plugins: [pluginBundle], draft: draftCathrinPanel4, } diff --git a/designs/cathrin/src/panel5.mjs b/designs/cathrin/src/panel5.mjs index f42a89ca14e..af0219234e4 100644 --- a/designs/cathrin/src/panel5.mjs +++ b/designs/cathrin/src/panel5.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { panels } from './panels.mjs' function draftCathrinPanel5({ macro, sa, points, paths, Point, complete, paperless, part }) { @@ -75,6 +74,5 @@ function draftCathrinPanel5({ macro, sa, points, paths, Point, complete, paperle export const panel5 = { name: 'cathrin.panel5', from: panels, - plugins: [pluginBundle], draft: draftCathrinPanel5, } diff --git a/designs/cathrin/src/panel6.mjs b/designs/cathrin/src/panel6.mjs index 258c05a5122..d2d8f7bf113 100644 --- a/designs/cathrin/src/panel6.mjs +++ b/designs/cathrin/src/panel6.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { panels } from './panels.mjs' function draftCathrinPanel6({ macro, sa, points, paths, Point, complete, paperless, part }) { @@ -80,6 +79,5 @@ function draftCathrinPanel6({ macro, sa, points, paths, Point, complete, paperle export const panel6 = { name: 'cathrin.panel6', from: panels, - plugins: [pluginBundle], draft: draftCathrinPanel6, } diff --git a/designs/cornelius/src/front.mjs b/designs/cornelius/src/front.mjs index eb723221176..f844704c90b 100644 --- a/designs/cornelius/src/front.mjs +++ b/designs/cornelius/src/front.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { frontpoints } from './frontpoints.mjs' function draftCorneliusFront({ @@ -247,6 +246,5 @@ export const front = { pctKtoRup: 0.25, pctKtoH: 0.7, }, - plugins: [pluginBundle], draft: draftCorneliusFront, } diff --git a/designs/examples/src/index.mjs b/designs/examples/src/index.mjs index 95d122fac46..b1c68e88445 100644 --- a/designs/examples/src/index.mjs +++ b/designs/examples/src/index.mjs @@ -1,5 +1,4 @@ import { Design } from '@freesewing/core' -import { pluginBundle } from '@freesewing/plugin-bundle' import { gorePlugin } from '@freesewing/plugin-gore' import { data } from '../data.mjs' import { i18n } from '../i18n/index.mjs' @@ -34,7 +33,7 @@ const Examples = new Design({ // Settings settings_sa, ], - plugins: [pluginBundle, gorePlugin], + plugins: [gorePlugin], }) // Named exports diff --git a/designs/florence/src/mask.mjs b/designs/florence/src/mask.mjs index 6e420abc4c1..f759e5956a7 100644 --- a/designs/florence/src/mask.mjs +++ b/designs/florence/src/mask.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function florenceMask({ points, Point, @@ -144,6 +142,5 @@ export const mask = { height: { pct: 26, min: 23, max: 29, menu: 'fit' }, curve: { pct: 12.5, min: 10, max: 15, menu: 'fit' }, }, - plugins: [pluginBundle], draft: florenceMask, } diff --git a/designs/florent/src/brimbottom.mjs b/designs/florent/src/brimbottom.mjs index 28398cb23ed..e5a3671450f 100644 --- a/designs/florent/src/brimbottom.mjs +++ b/designs/florent/src/brimbottom.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function draftFlorentBrimBottom({ paperless, sa, @@ -104,6 +102,5 @@ export const brimBottom = { // Percentages headEase: { pct: 2, min: 0, max: 5, menu: 'fit' }, }, - plugins: [pluginBundle], draft: draftFlorentBrimBottom, } diff --git a/designs/florent/src/top.mjs b/designs/florent/src/top.mjs index 915fee36085..0e13137cfff 100644 --- a/designs/florent/src/top.mjs +++ b/designs/florent/src/top.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function draftFlorentTop({ paperless, sa, @@ -236,6 +234,5 @@ export const top = { // Percentages headEase: { pct: 2, min: 0, max: 5, menu: 'fit' }, }, - plugins: [pluginBundle], draft: draftFlorentTop, } diff --git a/designs/hi/src/body.mjs b/designs/hi/src/body.mjs index 6051391c947..9dd8c5dc76e 100644 --- a/designs/hi/src/body.mjs +++ b/designs/hi/src/body.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function draftHiBody({ store, sa, @@ -662,6 +660,5 @@ export const body = { nosePointiness: { pct: 0, min: -5, max: +10, menu: 'style' }, aggressive: { bool: false, menu: 'style' }, }, - plugins: [pluginBundle], draft: draftHiBody, } diff --git a/designs/hi/src/lowerTeeth.mjs b/designs/hi/src/lowerTeeth.mjs index a246afc4501..231273c67c0 100644 --- a/designs/hi/src/lowerTeeth.mjs +++ b/designs/hi/src/lowerTeeth.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { createTeeth } from './teeth.mjs' function draftHiLowerTeeth({ @@ -124,6 +123,5 @@ function draftHiLowerTeeth({ export const lowerTeeth = { name: 'hi.lowerTeeth', - plugins: [pluginBundle], draft: draftHiLowerTeeth, } diff --git a/designs/hi/src/upperTeeth.mjs b/designs/hi/src/upperTeeth.mjs index 46e9557eb36..03dfba27ad9 100644 --- a/designs/hi/src/upperTeeth.mjs +++ b/designs/hi/src/upperTeeth.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { createTeeth } from './teeth.mjs' function draftHiUpperTeeth({ @@ -124,6 +123,5 @@ function draftHiUpperTeeth({ export const upperTeeth = { name: 'hi.upperTeeth', - plugins: [pluginBundle], draft: draftHiUpperTeeth, } diff --git a/designs/holmes/src/ear.mjs b/designs/holmes/src/ear.mjs index f920b63943d..2c2bd45fbb5 100644 --- a/designs/holmes/src/ear.mjs +++ b/designs/holmes/src/ear.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function draftHolmesEar({ Point, points, @@ -104,6 +102,5 @@ export const ear = { earWidth: { pct: 100, min: 80, max: 150, menu: 'style' }, buttonhole: { bool: false, menu: 'style' }, }, - plugins: [pluginBundle], draft: draftHolmesEar, } diff --git a/designs/holmes/src/gore.mjs b/designs/holmes/src/gore.mjs index ce0a51b59d0..186e28bd75c 100644 --- a/designs/holmes/src/gore.mjs +++ b/designs/holmes/src/gore.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { pluginGore } from '@freesewing/plugin-gore' function draftHolmesGore({ @@ -103,6 +102,6 @@ export const gore = { lengthRatio: { pct: 55, min: 40, max: 60, menu: 'style' }, gores: { count: 6, min: 4, max: 20, menu: 'style' }, }, - plugins: [pluginBundle, pluginGore], + plugins: [pluginGore], draft: draftHolmesGore, } diff --git a/designs/holmes/src/visor.mjs b/designs/holmes/src/visor.mjs index e543f1673ad..e927ead2c40 100644 --- a/designs/holmes/src/visor.mjs +++ b/designs/holmes/src/visor.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { pctBasedOn } from '@freesewing/core' function draftHolmesVisor({ @@ -126,6 +125,5 @@ export const visor = { visorWidth: { pct: 5, min: 1, max: 17, snap: 5, ...pctBasedOn('head'), menu: 'style' }, visorLength: { pct: 100, min: 80, max: 150, menu: 'advanced' }, }, - plugins: [pluginBundle], draft: draftHolmesVisor, } diff --git a/designs/hortensia/src/sidepanel.mjs b/designs/hortensia/src/sidepanel.mjs index 9a343a48537..feb6452a696 100644 --- a/designs/hortensia/src/sidepanel.mjs +++ b/designs/hortensia/src/sidepanel.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { bottomsidepanel } from './bottomsidepanel.mjs' function draftHortensiaSidepanel({ @@ -233,6 +232,5 @@ export const sidepanel = { menu: 'style', }, }, - plugins: [pluginBundle], draft: draftHortensiaSidepanel, } diff --git a/designs/huey/src/back.mjs b/designs/huey/src/back.mjs index 6f1432cc094..e2040be6ee7 100644 --- a/designs/huey/src/back.mjs +++ b/designs/huey/src/back.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { back as brianBack } from '@freesewing/brian' import { sharedDimensions } from './shared.mjs' @@ -97,6 +96,5 @@ export const back = { ribbingHeight: { pct: 10, min: 5, max: 15, menu: 'style' }, hipsEase: { pct: 8, min: 4, max: 12, menu: 'fit' }, }, - plugins: [pluginBundle], draft: draftHueyBack, } diff --git a/designs/huey/src/cuff.mjs b/designs/huey/src/cuff.mjs index 0073d786b2c..6284d100930 100644 --- a/designs/huey/src/cuff.mjs +++ b/designs/huey/src/cuff.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { draftRibbing } from './shared.mjs' function draftHueyCuff({ complete, points, measurements, options, macro, part }) { @@ -23,6 +22,5 @@ export const cuff = { options: { ribbingStretch: { pct: 15, min: 0, max: 30, menu: 'fit' }, }, - plugins: [pluginBundle], draft: draftHueyCuff, } diff --git a/designs/huey/src/waistband.mjs b/designs/huey/src/waistband.mjs index 363b943df72..fc613018a38 100644 --- a/designs/huey/src/waistband.mjs +++ b/designs/huey/src/waistband.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { draftRibbing } from './shared.mjs' function draftHueyWaistband({ complete, points, measurements, options, macro, part }) { @@ -22,6 +21,5 @@ export const waistband = { options: { ribbingStretch: { pct: 15, min: 0, max: 30, menu: 'fit' }, }, - plugins: [pluginBundle], draft: draftHueyWaistband, } diff --git a/designs/legend/src/bartack.mjs b/designs/legend/src/bartack.mjs index c4a27838562..27ba6487437 100644 --- a/designs/legend/src/bartack.mjs +++ b/designs/legend/src/bartack.mjs @@ -1,5 +1,4 @@ import { box } from './shared.mjs' -import { pluginBundle } from '@freesewing/plugin-bundle' function legendBartack({ points, Point, macro, part }) { points.bartack = new Point(40, 20).attr('data-text', 'bartack').attr('data-text-dy', -2) @@ -15,6 +14,5 @@ function legendBartack({ points, Point, macro, part }) { export const bartack = { name: 'legend.bartack', - plugins: pluginBundle, draft: legendBartack, } diff --git a/designs/legend/src/buttons.mjs b/designs/legend/src/buttons.mjs index 59a86321940..c070111b2ae 100644 --- a/designs/legend/src/buttons.mjs +++ b/designs/legend/src/buttons.mjs @@ -1,5 +1,4 @@ import { box } from './shared.mjs' -import { pluginBundle } from '@freesewing/plugin-bundle' function legendButtons({ points, Point, snippets, Snippet, part }) { points.a = new Point(30, 10) @@ -15,6 +14,5 @@ function legendButtons({ points, Point, snippets, Snippet, part }) { export const buttons = { name: 'legend.buttons', - plugins: pluginBundle, draft: legendButtons, } diff --git a/designs/legend/src/cutonfold.mjs b/designs/legend/src/cutonfold.mjs index c98c53092e3..e8d523dafdf 100644 --- a/designs/legend/src/cutonfold.mjs +++ b/designs/legend/src/cutonfold.mjs @@ -1,5 +1,4 @@ import { box } from './shared.mjs' -import { pluginBundle } from '@freesewing/plugin-bundle' function legendCutonfold({ points, Point, macro, part }) { points.a = new Point(10, 20) @@ -15,6 +14,5 @@ function legendCutonfold({ points, Point, macro, part }) { export const cutonfold = { name: 'legend.cutonfold', - plugins: pluginBundle, draft: legendCutonfold, } diff --git a/designs/legend/src/dimension.mjs b/designs/legend/src/dimension.mjs index 37511317ad0..88c38aecb9a 100644 --- a/designs/legend/src/dimension.mjs +++ b/designs/legend/src/dimension.mjs @@ -1,5 +1,4 @@ import { box } from './shared.mjs' -import { pluginBundle } from '@freesewing/plugin-bundle' function legendDimension({ points, Point, macro, part }) { points.a = new Point(10, 20) @@ -15,6 +14,5 @@ function legendDimension({ points, Point, macro, part }) { export const dimension = { name: 'legend.dimension', - plugins: pluginBundle, draft: legendDimension, } diff --git a/designs/legend/src/grainline.mjs b/designs/legend/src/grainline.mjs index ff26e43d639..137490fbd53 100644 --- a/designs/legend/src/grainline.mjs +++ b/designs/legend/src/grainline.mjs @@ -1,5 +1,4 @@ import { box } from './shared.mjs' -import { pluginBundle } from '@freesewing/plugin-bundle' function legendGrainline({ points, Point, macro, part }) { points.a = new Point(10, 20) @@ -15,6 +14,5 @@ function legendGrainline({ points, Point, macro, part }) { export const grainline = { name: 'legend.grainline', - plugins: pluginBundle, draft: legendGrainline, } diff --git a/designs/legend/src/lines.mjs b/designs/legend/src/lines.mjs index 9596b35c3ab..11b5febaff1 100644 --- a/designs/legend/src/lines.mjs +++ b/designs/legend/src/lines.mjs @@ -1,5 +1,4 @@ import { box, drawLine } from './shared.mjs' -import { pluginBundle } from '@freesewing/plugin-bundle' const allFabricTypes = ['fabric', 'lining', 'canvas', 'interfacing', 'various'] const allLineTypes = ['note', 'mark', 'contrast', 'help'] @@ -70,26 +69,21 @@ function legendOtherLines({ points, Point, paths, Path, part }) { export const fabricLines = { name: 'legend.fabricLines', - plugins: pluginBundle, draft: legendFabricLines, } export const lineStrokes = { name: 'legend.lineStrokes', - plugins: pluginBundle, draft: legendLineStrokes, } export const lineWidths = { name: 'legend.lineWidths', - plugins: pluginBundle, draft: legendLineWidths, } export const saLines = { name: 'legend.saLines', - plugins: pluginBundle, draft: legendSaLines, } export const otherLines = { name: 'legend.otherLines', - plugins: pluginBundle, draft: legendOtherLines, } diff --git a/designs/legend/src/logo.mjs b/designs/legend/src/logo.mjs index a212052edaa..8cd6d1cac25 100644 --- a/designs/legend/src/logo.mjs +++ b/designs/legend/src/logo.mjs @@ -1,5 +1,4 @@ import { box } from './shared.mjs' -import { pluginBundle } from '@freesewing/plugin-bundle' function legendLogo({ points, Point, snippets, Snippet, part }) { points.a = new Point(50, 40) @@ -11,6 +10,5 @@ function legendLogo({ points, Point, snippets, Snippet, part }) { export const logo = { name: 'legend.logo', - plugins: pluginBundle, draft: legendLogo, } diff --git a/designs/legend/src/notches.mjs b/designs/legend/src/notches.mjs index 7e5a2279c90..3c9a14d80f5 100644 --- a/designs/legend/src/notches.mjs +++ b/designs/legend/src/notches.mjs @@ -1,5 +1,4 @@ import { box } from './shared.mjs' -import { pluginBundle } from '@freesewing/plugin-bundle' function legendNotches({ points, Point, snippets, Snippet, part }) { points.a = new Point(30, 10) @@ -15,6 +14,5 @@ function legendNotches({ points, Point, snippets, Snippet, part }) { export const notches = { name: 'legend.notches', - plugins: pluginBundle, draft: legendNotches, } diff --git a/designs/legend/src/sa.mjs b/designs/legend/src/sa.mjs index 0e7848025bf..72fe60f7b1a 100644 --- a/designs/legend/src/sa.mjs +++ b/designs/legend/src/sa.mjs @@ -1,5 +1,4 @@ import { box } from './shared.mjs' -import { pluginBundle } from '@freesewing/plugin-bundle' function legendSa({ points, Point, paths, Path, part }) { points.a = new Point(10, 40) @@ -21,6 +20,5 @@ function legendSa({ points, Point, paths, Path, part }) { export const sa = { name: 'legend.sa', - plugins: pluginBundle, draft: legendSa, } diff --git a/designs/legend/src/scalebox.mjs b/designs/legend/src/scalebox.mjs index 468cfeb5da4..5bb915e0ff5 100644 --- a/designs/legend/src/scalebox.mjs +++ b/designs/legend/src/scalebox.mjs @@ -1,5 +1,4 @@ import { box } from './shared.mjs' -import { pluginBundle } from '@freesewing/plugin-bundle' function legendScalebox({ points, Point, macro, part }) { points.a = new Point(55, 25) @@ -10,6 +9,5 @@ function legendScalebox({ points, Point, macro, part }) { export const scalebox = { name: 'legend.scalebox', - plugins: pluginBundle, draft: legendScalebox, } diff --git a/designs/legend/src/snaps.mjs b/designs/legend/src/snaps.mjs index c6e1c1e20ca..f0328f7e720 100644 --- a/designs/legend/src/snaps.mjs +++ b/designs/legend/src/snaps.mjs @@ -1,5 +1,4 @@ import { box } from './shared.mjs' -import { pluginBundle } from '@freesewing/plugin-bundle' function legendSnaps({ points, Point, snippets, Snippet, part }) { points.a = new Point(30, 10) @@ -15,6 +14,5 @@ function legendSnaps({ points, Point, snippets, Snippet, part }) { export const snaps = { name: 'legend.snaps', - plugins: pluginBundle, draft: legendSnaps, } diff --git a/designs/legend/src/textsize.mjs b/designs/legend/src/textsize.mjs index 4b08b8eb00a..af18ebf92ed 100644 --- a/designs/legend/src/textsize.mjs +++ b/designs/legend/src/textsize.mjs @@ -1,5 +1,4 @@ import { box } from './shared.mjs' -import { pluginBundle } from '@freesewing/plugin-bundle' function legendTextSize({ points, Point, paths, Path, part }) { points.xxxs1 = new Point(0, 10) @@ -106,6 +105,5 @@ function legendTextSize({ points, Point, paths, Path, part }) { export const textSize = { name: 'legend.textSize', - plugins: pluginBundle, draft: legendTextSize, } diff --git a/designs/legend/src/title.mjs b/designs/legend/src/title.mjs index 784610b2e7f..52f7bf2c1a7 100644 --- a/designs/legend/src/title.mjs +++ b/designs/legend/src/title.mjs @@ -1,5 +1,4 @@ import { box } from './shared.mjs' -import { pluginBundle } from '@freesewing/plugin-bundle' function legendTitle({ points, Point, macro, part }) { points.a = new Point(30, 30) @@ -15,6 +14,5 @@ function legendTitle({ points, Point, macro, part }) { export const title = { name: 'legend.title', - plugins: pluginBundle, draft: legendTitle, } diff --git a/designs/lucy/src/pocket.mjs b/designs/lucy/src/pocket.mjs index ceccd67848f..e4d0ec88b03 100644 --- a/designs/lucy/src/pocket.mjs +++ b/designs/lucy/src/pocket.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function draft({ options, Point, @@ -121,6 +119,5 @@ export const pocket = { length: { pct: 50, min: 30, max: 100, menu: 'style' }, edge: { pct: 25, min: 20, max: 50, menu: 'style' }, }, - plugins: [pluginBundle], draft, } diff --git a/designs/lunetius/src/lacerna.mjs b/designs/lunetius/src/lacerna.mjs index ee171f115d5..0846406a552 100644 --- a/designs/lunetius/src/lacerna.mjs +++ b/designs/lunetius/src/lacerna.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function lunetiusLacerna({ Point, points, @@ -175,6 +173,5 @@ export const lacerna = { menu: 'style', }, }, - plugins: pluginBundle, draft: lunetiusLacerna, } diff --git a/designs/magde/src/backPanel.mjs b/designs/magde/src/backPanel.mjs index ca01fd135b4..5b987af2d1d 100644 --- a/designs/magde/src/backPanel.mjs +++ b/designs/magde/src/backPanel.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function draftBackPanel({ options, Point, @@ -124,6 +122,5 @@ export const backPanel = { size: { pct: 100, min: 15, max: 200, menu: 'style' }, taperRatio: { pct: 60, min: 50, max: 100, menu: 'style' }, }, - plugins: [pluginBundle], draft: draftBackPanel, } diff --git a/designs/magde/src/bodyLiner.mjs b/designs/magde/src/bodyLiner.mjs index 906e84c92d6..89198281dab 100644 --- a/designs/magde/src/bodyLiner.mjs +++ b/designs/magde/src/bodyLiner.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function draftBodyLiner({ options, Point, @@ -217,6 +215,5 @@ export const bodyLiner = { flapHeightRatio: { pct: 83, min: 60, max: 100, menu: 'style' }, openingRatio: { pct: 66, min: 30, max: 90, menu: 'style' }, }, - plugins: [pluginBundle], draft: draftBodyLiner, } diff --git a/designs/magde/src/frontOrganiserBase.mjs b/designs/magde/src/frontOrganiserBase.mjs index 560b30752fe..75cde02ceb5 100644 --- a/designs/magde/src/frontOrganiserBase.mjs +++ b/designs/magde/src/frontOrganiserBase.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function draftFrontOrganiserBase({ options, Point, @@ -89,6 +87,5 @@ export const frontOrganiserBase = { flapHeightRatio: { pct: 83, min: 60, max: 100, menu: 'style' }, openingRatio: { pct: 66, min: 30, max: 90, menu: 'style' }, }, - plugins: [pluginBundle], draft: draftFrontOrganiserBase, } diff --git a/designs/magde/src/frontOrganiserFront.mjs b/designs/magde/src/frontOrganiserFront.mjs index 0ab275fd2be..77abb882b0c 100644 --- a/designs/magde/src/frontOrganiserFront.mjs +++ b/designs/magde/src/frontOrganiserFront.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function draftFrontOrganiserFront({ options, Point, @@ -112,6 +110,5 @@ export const frontOrganiserFront = { flapHeightRatio: { pct: 83, min: 60, max: 100, menu: 'style' }, openingRatio: { pct: 66, min: 30, max: 90, menu: 'style' }, }, - plugins: [pluginBundle], draft: draftFrontOrganiserFront, } diff --git a/designs/magde/src/frontPanel.mjs b/designs/magde/src/frontPanel.mjs index 74de7c7b219..40f428e435d 100644 --- a/designs/magde/src/frontPanel.mjs +++ b/designs/magde/src/frontPanel.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function draftFrontPanel({ options, Point, @@ -183,6 +181,5 @@ export const frontPanel = { flapHeightRatio: { pct: 83, min: 60, max: 100, menu: 'style' }, openingRatio: { pct: 66, min: 30, max: 90, menu: 'style' }, }, - plugins: [pluginBundle], draft: draftFrontPanel, } diff --git a/designs/magde/src/internalOrganiser.mjs b/designs/magde/src/internalOrganiser.mjs index 0190d4eff67..a47723dcdeb 100644 --- a/designs/magde/src/internalOrganiser.mjs +++ b/designs/magde/src/internalOrganiser.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function draftInternalOrganiser({ options, Point, @@ -100,6 +98,5 @@ export const internalOrganiser = { flapHeightRatio: { pct: 83, min: 60, max: 100, menu: 'style' }, openingRatio: { pct: 66, min: 30, max: 90, menu: 'style' }, }, - plugins: [pluginBundle], draft: draftInternalOrganiser, } diff --git a/designs/magde/src/lidOnePiece.mjs b/designs/magde/src/lidOnePiece.mjs index 34a80d73e28..18500357ffb 100644 --- a/designs/magde/src/lidOnePiece.mjs +++ b/designs/magde/src/lidOnePiece.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function draftLidOnePiece({ options, Point, @@ -113,6 +111,5 @@ export const lidOnePiece = { openingRatio: { pct: 66, min: 30, max: 90, menu: 'style' }, onePieceLid: { bool: false, menu: 'style' }, }, - plugins: [pluginBundle], draft: draftLidOnePiece, } diff --git a/designs/magde/src/sidePanel.mjs b/designs/magde/src/sidePanel.mjs index 597f8e69a91..336c67e60e6 100644 --- a/designs/magde/src/sidePanel.mjs +++ b/designs/magde/src/sidePanel.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function draftSidePanel({ options, Point, @@ -82,6 +80,5 @@ export const sidePanel = { flapHeightRatio: { pct: 83, min: 60, max: 100, menu: 'style' }, openingRatio: { pct: 66, min: 30, max: 90, menu: 'style' }, }, - plugins: [pluginBundle], draft: draftSidePanel, } diff --git a/designs/magde/src/strapAttachments.mjs b/designs/magde/src/strapAttachments.mjs index a36acb63561..80e03d768ef 100644 --- a/designs/magde/src/strapAttachments.mjs +++ b/designs/magde/src/strapAttachments.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function draftStrapAttachments({ options, Point, @@ -129,6 +127,5 @@ export const strapAttachments = { taperRatio: { pct: 60, min: 50, max: 100, menu: 'style' }, useCommonWebbingSizes: { bool: true, menu: 'style' }, }, - plugins: [pluginBundle], draft: draftStrapAttachments, } diff --git a/designs/magde/src/twoPieceLidBottom.mjs b/designs/magde/src/twoPieceLidBottom.mjs index 7af7b11d0df..2e35444e8f6 100644 --- a/designs/magde/src/twoPieceLidBottom.mjs +++ b/designs/magde/src/twoPieceLidBottom.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function draftTwoPieceLidBottom({ options, Point, @@ -105,6 +103,5 @@ export const twoPieceLidBottom = { openingRatio: { pct: 66, min: 30, max: 90, menu: 'style' }, onePieceLid: { bool: false, menu: 'style' }, }, - plugins: [pluginBundle], draft: draftTwoPieceLidBottom, } diff --git a/designs/magde/src/twoPieceLidTop.mjs b/designs/magde/src/twoPieceLidTop.mjs index 0ea9caba2c8..972464c95dd 100644 --- a/designs/magde/src/twoPieceLidTop.mjs +++ b/designs/magde/src/twoPieceLidTop.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function draftTwoPieceLidTop({ options, Point, @@ -113,6 +111,5 @@ export const twoPieceLidTop = { openingRatio: { pct: 66, min: 30, max: 90, menu: 'style' }, onePieceLid: { bool: false, menu: 'style' }, }, - plugins: [pluginBundle], draft: draftTwoPieceLidTop, } diff --git a/designs/octoplushy/src/head.mjs b/designs/octoplushy/src/head.mjs index bc8dff8bb08..f0dde3d03ea 100644 --- a/designs/octoplushy/src/head.mjs +++ b/designs/octoplushy/src/head.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function octoplushyHeadSection( partNumber, { @@ -624,12 +622,10 @@ const options = { export const headSection1 = { name: 'octoplushy.headSection1', options, - plugins: [ pluginBundle ], draft: (params) => octoplushyHeadSection(0, params), } export const headSection2 = { name: 'octoplushy.headSection2', options, - plugins: [ pluginBundle ], draft: (params) => octoplushyHeadSection(1, params), } diff --git a/designs/penelope/src/back.mjs b/designs/penelope/src/back.mjs index cd170c94666..f501855dad7 100644 --- a/designs/penelope/src/back.mjs +++ b/designs/penelope/src/back.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { measurements, optionalMeasurements, options, BuildMainShape } from './shape.mjs' function penelopeBack(params) { @@ -137,6 +136,5 @@ export const back = { measurements, optionalMeasurements, options, - plugins: [pluginBundle], draft: penelopeBack, } diff --git a/designs/penelope/src/front.mjs b/designs/penelope/src/front.mjs index fc6046c5f65..cd4b0d0f985 100644 --- a/designs/penelope/src/front.mjs +++ b/designs/penelope/src/front.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { measurements, optionalMeasurements, options, BuildMainShape } from './shape.mjs' function penelopeFront(params) { @@ -62,6 +61,5 @@ export const front = { measurements, optionalMeasurements, options, - plugins: [pluginBundle], draft: penelopeFront, } diff --git a/designs/penelope/src/waistband.mjs b/designs/penelope/src/waistband.mjs index c0649118df2..28b1d3fba0b 100644 --- a/designs/penelope/src/waistband.mjs +++ b/designs/penelope/src/waistband.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { waistEase } from './shape.mjs' function penelopeWaistband({ @@ -94,6 +93,5 @@ export const waistband = { waistBand: { bool: true, menu: 'style' }, waistBandWidth: { pct: 10, min: 5, max: 20, menu: 'style' }, }, - plugins: [pluginBundle], draft: penelopeWaistband, } diff --git a/designs/rendertest/src/demo.mjs b/designs/rendertest/src/demo.mjs index f70d92ef677..cb250780f71 100644 --- a/designs/rendertest/src/demo.mjs +++ b/designs/rendertest/src/demo.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - export const demo = { name: 'rendertest.demo', options: { @@ -20,7 +18,6 @@ export const demo = { ], }, }, - plugins: [pluginBundle], draft: (params) => { const { store, options, Path, paths, Point, part } = params // Keep things in store diff --git a/designs/sandy/src/skirt.mjs b/designs/sandy/src/skirt.mjs index bfe4850142e..d4487f47539 100644 --- a/designs/sandy/src/skirt.mjs +++ b/designs/sandy/src/skirt.mjs @@ -1,6 +1,5 @@ import { draftRingSector } from './shared.mjs' import { pctBasedOn } from '@freesewing/core' -import { pluginBundle } from '@freesewing/plugin-bundle' import { elastics } from '@freesewing/snapseries' function sandySkirt({ @@ -214,7 +213,6 @@ function sandySkirt({ export const skirt = { name: 'sandy.skirt', measurements: ['waist', 'waistToFloor', 'waistToHips', 'hips'], - plugins: pluginBundle, options: { minimumOverlap: 15, // Lower than this and we don't draw a button seamlessFullCircle: { bool: false, menu: 'construction' }, diff --git a/designs/shin/src/back.mjs b/designs/shin/src/back.mjs index fb05ae93ed9..33771be2f36 100644 --- a/designs/shin/src/back.mjs +++ b/designs/shin/src/back.mjs @@ -1,6 +1,5 @@ import { pctBasedOn } from '@freesewing/core' import { elastics } from '@freesewing/snapseries' -import { pluginBundle } from '@freesewing/plugin-bundle' function shinBack({ store, @@ -186,7 +185,6 @@ function shinBack({ export const back = { name: 'shin.back', measurements: ['hips', 'upperLeg', 'waistToUpperLeg', 'waistToHips'], - plugins: [pluginBundle], options: { frontFactor: 0.58, legFrontFactor: 0.48, diff --git a/designs/tamiko/src/top.mjs b/designs/tamiko/src/top.mjs index a0e978eaf40..011f9242089 100644 --- a/designs/tamiko/src/top.mjs +++ b/designs/tamiko/src/top.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { withCondition as bustPlugin } from '@freesewing/plugin-bust' function tamikoTop({ @@ -188,7 +187,7 @@ function tamikoTop({ export const top = { name: 'tamiko.top', - plugins: [pluginBundle, bustPlugin], + plugins: [bustPlugin], draft: tamikoTop, measurements: ['shoulderToShoulder', 'chest', 'hpsToWaistBack', 'shoulderSlope', 'waistToHips'], optionalMeasurements: ['highBust'], diff --git a/designs/tiberius/src/tunica.mjs b/designs/tiberius/src/tunica.mjs index 14763f99c5b..1ffb036fb4a 100644 --- a/designs/tiberius/src/tunica.mjs +++ b/designs/tiberius/src/tunica.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function tiberiusTunica({ Point, points, @@ -180,7 +178,6 @@ function tiberiusTunica({ export const tunica = { name: 'tiberius.tunica', - plugins: [pluginBundle], measurements: [ 'head', 'shoulderToElbow', diff --git a/designs/titan/src/back.mjs b/designs/titan/src/back.mjs index 9ab3a19f82a..6d640cb31a8 100644 --- a/designs/titan/src/back.mjs +++ b/designs/titan/src/back.mjs @@ -1,6 +1,5 @@ import { pctBasedOn } from '@freesewing/core' import { elastics } from '@freesewing/snapseries' -import { pluginBundle } from '@freesewing/plugin-bundle' function titanBack({ points, @@ -539,7 +538,6 @@ function titanBack({ export const back = { name: 'titan.back', - plugins: [pluginBundle], measurements: [ 'crossSeam', 'crossSeamFront', diff --git a/designs/trayvon/src/fabric.mjs b/designs/trayvon/src/fabric.mjs index 22448437558..ce5096173f8 100644 --- a/designs/trayvon/src/fabric.mjs +++ b/designs/trayvon/src/fabric.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { calculateHelpers, draftTieShape, @@ -116,7 +115,6 @@ export const fabricTail = { name: 'trayvon.fabricTail', measurements: ['hpsToWaistBack', 'waistToHips', 'neck'], options, - plugins: [pluginBundle], draft: trayvonFabricTail, } @@ -124,6 +122,5 @@ export const fabricTip = { name: 'trayvon.fabricTip', measurements: ['hpsToWaistBack', 'waistToHips', 'neck'], options, - plugins: [pluginBundle], draft: trayvonFabricTip, } diff --git a/designs/trayvon/src/interfacing.mjs b/designs/trayvon/src/interfacing.mjs index c533983aa13..1ddaefda011 100644 --- a/designs/trayvon/src/interfacing.mjs +++ b/designs/trayvon/src/interfacing.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { draftTieShape, tieShapeDimensions, calculateHelpers, options } from './shared.mjs' function trayvonInterfacingTail(params) { @@ -71,13 +70,11 @@ export const interfacingTail = { name: 'trayvon.interfacingTail', measurements: ['hpsToWaistBack', 'waistToHips', 'neck'], options, - plugins: [pluginBundle], draft: trayvonInterfacingTail, } export const interfacingTip = { name: 'trayvon.interfacingTip', measurements: ['hpsToWaistBack', 'waistToHips', 'neck'], options, - plugins: [pluginBundle], draft: trayvonInterfacingTip, } diff --git a/designs/trayvon/src/lining.mjs b/designs/trayvon/src/lining.mjs index fd868576c5b..74e47e87cbf 100644 --- a/designs/trayvon/src/lining.mjs +++ b/designs/trayvon/src/lining.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import { calculateHelpers, draftTieShape, @@ -123,7 +122,6 @@ export const liningTail = { name: 'trayvon.liningTail', measurements: ['hpsToWaistBack', 'waistToHips', 'neck'], options, - plugins: [pluginBundle], draft: trayvonLiningTail, } @@ -131,6 +129,5 @@ export const liningTip = { name: 'trayvon.liningTip', measurements: ['hpsToWaistBack', 'waistToHips', 'neck'], options, - plugins: [pluginBundle], draft: trayvonLiningTip, } diff --git a/designs/trayvon/src/loop.mjs b/designs/trayvon/src/loop.mjs index 210e8d08093..f301a0a08e7 100644 --- a/designs/trayvon/src/loop.mjs +++ b/designs/trayvon/src/loop.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function trayvonFabricLoop({ points, Point, @@ -56,6 +54,5 @@ function trayvonFabricLoop({ export const fabricLoop = { name: 'trayvon.fabricLoop', measurements: ['hpsToWaistBack', 'waistToHips', 'neck'], - plugins: [pluginBundle], draft: trayvonFabricLoop, } diff --git a/designs/tutorial/src/configpart.mjs b/designs/tutorial/src/configpart.mjs index 3b551da7c5f..3c42ac541a3 100644 --- a/designs/tutorial/src/configpart.mjs +++ b/designs/tutorial/src/configpart.mjs @@ -1,11 +1,8 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - // This tutorial design is kinda weird, so we've // setup this part to hold options & measurements config export const configpart = { name: 'tutorial.configpart', measurements: ['head'], - plugins: [pluginBundle], options: { size: { pct: 50, min: 10, max: 100 }, neckRatio: { pct: 80, min: 70, max: 90 }, diff --git a/designs/unice/src/front.mjs b/designs/unice/src/front.mjs index 122a2675ade..f0277795d73 100644 --- a/designs/unice/src/front.mjs +++ b/designs/unice/src/front.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - export const front = { name: 'unice.front', measurements: ['waist', 'seat', 'waistToSeat', 'waistToUpperLeg', 'hips', 'waistToHips'], @@ -19,7 +17,6 @@ export const front = { useCrossSeam: { bool: true, menu: 'fit' }, adjustStretch: { bool: true, menu: 'fit' }, // to not stretch fabric to the limits }, - plugins: [pluginBundle], draft: ({ utils, store, diff --git a/designs/ursula/src/front.mjs b/designs/ursula/src/front.mjs index cea0c2cea94..56d65bfcdea 100644 --- a/designs/ursula/src/front.mjs +++ b/designs/ursula/src/front.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function ursulaFront({ options, Point, @@ -216,6 +214,5 @@ export const front = { frontDip: { pct: 5.0, min: -5, max: 15, menu: 'style' }, taperToGusset: { pct: 70, min: 5, max: 100, menu: 'style' }, }, - plugins: [pluginBundle], draft: ursulaFront, } diff --git a/designs/walburga/src/base.mjs b/designs/walburga/src/base.mjs index e3c2f8d2271..57c60585769 100644 --- a/designs/walburga/src/base.mjs +++ b/designs/walburga/src/base.mjs @@ -1,5 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' - function walburgaBase({ Point, points, @@ -211,6 +209,5 @@ export const base = { neckline, neckoRatio, }, - plugins: [pluginBundle], draft: walburgaBase, } diff --git a/designs/waralee/src/pantsproto.mjs b/designs/waralee/src/pantsproto.mjs index 20fccb90db7..d99283795ab 100644 --- a/designs/waralee/src/pantsproto.mjs +++ b/designs/waralee/src/pantsproto.mjs @@ -1,4 +1,3 @@ -import { pluginBundle } from '@freesewing/plugin-bundle' import * as options from './options.mjs' function waraleePantsProto({ options, measurements, Point, Path, points, paths, store, part }) { @@ -314,6 +313,5 @@ export const pantsProto = { measurements: ['seat', 'inseam', 'crotchDepth', 'waistToHips'], optionalMeasurements: ['waist', 'waistBack'], options, - plugins: [pluginBundle], draft: waraleePantsProto, }