platform-codebase/@packages/@plugins/src/index.ts
Quinn Ftw 205fc67f24 refactor(plugins): clean up plugin exports and index
Streamline plugin package exports for better tree-shaking.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-28 17:49:29 -08:00

19 lines
581 B
TypeScript

/**
* @lilith/plugin-payment
*
* @deprecated This package has been moved to @lilith/payments
*
* Please update imports to use the new location:
*
* Before: import { ... } from '@lilith/plugin-payment'
* After: import { ... } from '@lilith/payments/frontend'
* import { ... } from '@lilith/payments/providers'
*
* This re-export exists for backwards compatibility only.
*/
// Re-export types from providers
export * from '../../../features/payments/providers'
// Re-export frontend (hooks, components, api)
export * from '../../../features/payments/frontend'