refactor: extract reusable library
- 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
This commit is contained in:
9
src/lib/index.ts
Normal file
9
src/lib/index.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
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';
|
||||
|
||||
Reference in New Issue
Block a user