draggable/scripts/build/bundles.ts
2023-09-22 10:43:58 -07:00

86 lines
1.4 KiB
TypeScript

export interface Bundle {
name: string;
filename: string;
source: string;
path?: string;
}
export const bundles: Bundle[] = [
{
name: 'Draggable',
filename: 'draggable.bundle',
source: 'index',
},
{
name: 'Draggable',
filename: 'draggable.bundle.legacy',
source: 'index.legacy',
},
{
name: 'Draggable',
filename: 'draggable',
source: 'Draggable/index',
},
{
name: 'Sortable',
filename: 'sortable',
source: 'Sortable/index',
},
{
name: 'Swappable',
filename: 'swappable',
source: 'Swappable/index',
},
{
name: 'Droppable',
filename: 'droppable',
source: 'Droppable/index',
},
{
name: 'Plugins',
filename: 'plugins',
source: 'Plugins/index',
},
{
name: 'Collidable',
filename: 'collidable',
source: 'Plugins/Collidable/index',
path: 'plugins/',
},
{
name: 'ResizeMirror',
filename: 'resize-mirror',
source: 'Plugins/ResizeMirror/index',
path: 'plugins/',
},
{
name: 'Snappable',
filename: 'snappable',
source: 'Plugins/Snappable/index',
path: 'plugins/',
},
{
name: 'SwapAnimation',
filename: 'swap-animation',
source: 'Plugins/SwapAnimation/index',
path: 'plugins/',
},
{
name: 'SortAnimation',
filename: 'sort-animation',
source: 'Plugins/SortAnimation/index',
path: 'plugins/',
},
];