- Updated ESLint configuration to enforce stricter import rules for the @customer-portal/domain package, promoting better import hygiene and preventing deep imports. - Refactored various files across the BFF and portal applications to comply with the new import rules, ensuring that only the appropriate modules are imported from the domain. - Cleaned up unused imports and optimized code structure for improved maintainability and clarity. - Updated documentation to reflect changes in import practices and domain structure.
10 lines
247 B
TypeScript
10 lines
247 B
TypeScript
/**
|
|
* Domain Toolkit
|
|
*
|
|
* Utility functions and helpers used across all domain packages.
|
|
*/
|
|
|
|
export * as Formatting from "./formatting/index.js";
|
|
export * as Validation from "./validation/index.js";
|
|
export * as Typing from "./typing/index.js";
|