|
10 | 10 | _export_evolution, |
11 | 11 | _export_data_structures, |
12 | 12 | _export_context_fallback, |
| 13 | + _export_project_toon, |
13 | 14 | _export_readme, |
14 | 15 | _export_refactor_prompts, |
15 | 16 | _export_index_html, |
@@ -61,6 +62,9 @@ def _export_single_project( |
61 | 62 | _export_data_structures(args, result, output_dir) |
62 | 63 | _export_context_fallback(args, result, output_dir, formats) |
63 | 64 |
|
| 65 | + if 'all' in requested_formats: |
| 66 | + _export_project_toon(args, result, output_dir) |
| 67 | + |
64 | 68 | if source_path is not None: |
65 | 69 | _export_code2logic(args, source_path, output_dir, formats) |
66 | 70 | _export_prompt_txt(args, output_dir, requested_formats, source_path) |
@@ -95,6 +99,9 @@ def _export_chunked_results( |
95 | 99 | _export_simple_formats(args, result, output_dir, ['toon', 'context']) |
96 | 100 | _export_evolution(args, result, output_dir) |
97 | 101 |
|
| 102 | + if 'all' in requested_formats: |
| 103 | + _export_project_toon(args, result, output_dir) |
| 104 | + |
98 | 105 | if source_path is not None: |
99 | 106 | _export_code2logic(args, source_path, output_dir, formats) |
100 | 107 | _export_chunked_prompt_txt(args, output_dir, requested_formats, source_path, subprojects) |
|
0 commit comments