mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 22:03:45 +00:00
style: format context file list on separate lines
This commit is contained in:
parent
b1c2c32e23
commit
dea7067593
1 changed files with 4 additions and 2 deletions
|
|
@ -515,8 +515,10 @@ export async function main(args: string[]) {
|
|||
if (shouldPrintMessages && !parsed.continue && !parsed.resume) {
|
||||
const contextFiles = loadProjectContextFiles();
|
||||
if (contextFiles.length > 0) {
|
||||
const fileList = contextFiles.map((f) => f.path).join(", ");
|
||||
console.log(chalk.dim(`Loaded project context from: ${fileList}`));
|
||||
console.log(chalk.dim("Loaded project context from:"));
|
||||
for (const { path: filePath } of contextFiles) {
|
||||
console.log(chalk.dim(` - ${filePath}`));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue