add BuildPlan::make_mdbook()

This commit is contained in:
Sebastian Kuzminsky 2025-03-16 22:19:03 -06:00
parent 233abbe4ff
commit a401faf786
3 changed files with 253 additions and 5 deletions

View file

@ -20,7 +20,9 @@ fn main() -> anyhow::Result<()> {
for repo_path in &args.repo {
repos.add_repo(repo_path)?;
}
let build_plan = repos.compile(&args.target)?;
println!("{build_plan:#?}");
build_plan.make_mdbook()?;
Ok(())
}