UNPKG

@mkpro118/semantic-change-detector

Version:

Semantic change detection for TypeScript and TSX code with GitHub Actions integration

12 lines 639 B
import ts from 'typescript'; // Main analysis functions export { analyzeJSX } from './analyzers/jsx-analyzer.js'; export { analyzeSemanticChanges } from './analyzers/semantic-analyzer.js'; export { createSemanticContext } from './context/semantic-context-builder.js'; // Analyzer functions export { analyzeFunctionCallChanges, analyzeFunctionSignatureChanges, analyzeImportStructureChanges, analyzeTypeDefinitionChanges, detectSemanticChanges, } from './analyzers/index.js'; // Utility exports export * from './utils/ast-utils.js'; // Re-export for convenience (compatible with TS export =) export { ts }; //# sourceMappingURL=index.js.map