Skip to content

Commit 93989c9

Browse files
committed
fix: excluded file list
1 parent dcb2735 commit 93989c9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/file.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,13 @@ export const getFiles = (): Map<string, Buffer> => {
9292

9393
// Report excluded files
9494
if (excludedFiles.length > 0) {
95-
console.log(cyanLog(`\n Excluded ${excludedFiles.length} file(s):`));
95+
console.log(`\nExcluded ${excludedFiles.length} file(s):`);
9696
// Show first 10 excluded files, then summarize if more
9797
const displayLimit = 10;
98-
for (const file of excludedFiles.slice(0, displayLimit)) console.log(cyanLog(` - ${file}`));
98+
for (const file of excludedFiles.slice(0, displayLimit)) console.log(cyanLog(`- ${file}`));
9999

100100
if (excludedFiles.length > displayLimit)
101-
console.log(cyanLog(` ... and ${excludedFiles.length - displayLimit} more`));
101+
console.log(cyanLog(`... and ${excludedFiles.length - displayLimit} more`));
102102

103103
console.log(); // Blank line for readability
104104
}

0 commit comments

Comments
 (0)