Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/core/output/outputStyleDecorate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@ export const generateHeader = (config: RepomixConfigMerged, generationDate: stri
const processingInfo =
processingNotes.length > 0 ? ` The content has been processed where ${processingNotes.join(', ')}.` : '';

return `${description}, combined into a single document.${processingInfo}
Generated by Repomix on: ${generationDate}`;
return `${description}, combined into a single document by Repomix.${processingInfo}`;
};

export const generateSummaryPurpose = (): string => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
This file is a merged representation of the entire codebase, combined into a single document.
This file is a merged representation of the entire codebase, combined into a single document by Repomix.

================================================================
File Summary
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
This file is a merged representation of the entire codebase, combined into a single document.
This file is a merged representation of the entire codebase, combined into a single document by Repomix.

<file_summary>
This section contains a summary of this file.
Expand Down
7 changes: 2 additions & 5 deletions tests/integration-tests/packager.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,8 @@ describe.runIf(!isWindows)('packager integration', () => {
});

// Read the actual and expected outputs
let actualOutput = await fs.readFile(actualOutputPath, 'utf-8');
let expectedOutput = await fs.readFile(expectedOutputPath, 'utf-8');

actualOutput = actualOutput.replace(/^Generated by Repomix on:.*\n/gm, '');
expectedOutput = expectedOutput.replace(/^Generated by Repomix on:.*\n/gm, '');
const actualOutput = await fs.readFile(actualOutputPath, 'utf-8');
const expectedOutput = await fs.readFile(expectedOutputPath, 'utf-8');

// Compare the outputs
expect(actualOutput).toBe(expectedOutput);
Expand Down