import { bartack } from './bartack.mjs' import { buttons } from './buttons.mjs' import { crossbox } from './crossbox.mjs' import { cutonfold } from './cutonfold.mjs' import { grainline } from './grainline.mjs' import { logo } from './logo.mjs' import { scalebox, scalebox2 } from './scalebox.mjs' import { notches } from './notches.mjs' import { pleat } from './pleat.mjs' import { sewtogether } from './sewtogether.mjs' // Named exports // export bartack export const bartackPlugin = bartack export const pluginBartack = bartack export const crossboxPlugin = crossbox export const pluginCrossbox = crossbox export const cutonfoldPlugin = cutonfold export const pluginCutonfold = cutonfold export const pleatPlugin = pleat export const pluginPleat = pleat export const scaleboxPlugin = scalebox export const pluginScalebox = scalebox export const sewtogetherPlugin = sewtogether export const pluginSewtogether = sewtogether export const buttonsPlugin = buttons export const pluginButtons = buttons export const grainlinePlugin = grainline export const pluginGrainline = grainline export const logoPlugin = logo export const pluginLogo = logo export const notchesPlugin = notches export const pluginNotches = notches