2023-02-16 23:57:44 +00:00
|
|
|
import { bartack } from './bartack.mjs'
|
2023-02-20 22:58:05 +00:00
|
|
|
import { buttons } from './buttons.mjs'
|
2023-02-16 23:57:44 +00:00
|
|
|
import { crossbox } from './crossbox.mjs'
|
|
|
|
import { cutonfold } from './cutonfold.mjs'
|
2023-02-20 22:58:05 +00:00
|
|
|
import { grainline } from './grainline.mjs'
|
|
|
|
import { logo } from './logo.mjs'
|
2023-03-04 01:36:34 +00:00
|
|
|
import { scalebox, scalebox2 } from './scalebox.mjs'
|
2023-02-20 22:58:05 +00:00
|
|
|
import { notches } from './notches.mjs'
|
2023-02-16 23:57:44 +00:00
|
|
|
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
|
|
|
|
|
2023-03-03 22:02:57 +00:00
|
|
|
export const scaleboxPlugin = scalebox
|
|
|
|
export const pluginScalebox = scalebox
|
|
|
|
|
2023-02-16 23:57:44 +00:00
|
|
|
export const sewtogetherPlugin = sewtogether
|
|
|
|
export const pluginSewtogether = sewtogether
|
2023-02-20 22:58:05 +00:00
|
|
|
|
|
|
|
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
|