| /** | |
| * @automaker/dependency-resolver | |
| * Feature dependency resolution for AutoMaker | |
| */ | |
| export { | |
| resolveDependencies, | |
| areDependenciesSatisfied, | |
| getBlockingDependencies, | |
| createFeatureMap, | |
| getBlockingDependenciesFromMap, | |
| wouldCreateCircularDependency, | |
| dependencyExists, | |
| getAncestors, | |
| formatAncestorContextForPrompt, | |
| type DependencyResolutionResult, | |
| type DependencySatisfactionOptions, | |
| type AncestorContext, | |
| } from './resolver.js'; | |