- move reusable domain, data, state, ui code into src/lib - update host screens to consume new library exports - document architecture and configure path aliases - bump astro integration dependencies for compatibility Refs #30
10 lines
256 B
TypeScript
10 lines
256 B
TypeScript
export * from './domain';
|
|
export * from './data';
|
|
export * from './state';
|
|
export * from './ui';
|
|
export * from './features/game-list';
|
|
export * from './features/game-detail';
|
|
export * from './features/game-lifecycle';
|
|
export * from './features/new-game';
|
|
|