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>
19 lines
581 B
TypeScript
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'
|