Skip to content
This repository was archived by the owner on Sep 9, 2025. It is now read-only.
/ express Public archive
Merged
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
5 changes: 1 addition & 4 deletions src/readme-factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,7 @@ export class ExpressReadmeFactory extends BaseFactory {

files.push({
path: buildFilePath(['express', 'README.md'], this.service, this.options),
contents: formatMarkdown(
[contents].join('\n\n'),
this.options,
) as any as string, // Prettier 3 hack until basketry types support promises
contents: await formatMarkdown([contents].join('\n\n'), this.options),
});

return files;
Expand Down