feat: add @tm/cli package and start refactoring old code into the new code

This commit is contained in:
Ralph Khreish
2025-08-22 13:55:23 +02:00
parent cf6533207f
commit d5c2acc8bf
40 changed files with 3724 additions and 740 deletions

View File

@@ -14,15 +14,15 @@ export {
// Re-export types
export type * from './types/index';
// Re-export interfaces
// Re-export interfaces (types only to avoid conflicts)
export type * from './interfaces/index';
export * from './interfaces/index';
// Re-export providers
export * from './providers/index';
// Re-export storage
export * from './storage/index';
// Re-export storage (selectively to avoid conflicts)
export { FileStorage, ApiStorage, StorageFactory, type ApiStorageConfig } from './storage/index';
export { PlaceholderStorage, type StorageAdapter } from './storage/index';
// Re-export parser
export * from './parser/index';
@@ -34,7 +34,7 @@ export * from './utils/index';
export * from './errors/index';
// Re-export entities
export { TaskEntity } from './core/entities/task.entity.js';
export { TaskEntity } from './entities/task.entity.js';
// Package metadata
export const version = '1.0.0';