Skip to content

Commit

Permalink
Linebreak after every type part
Browse files Browse the repository at this point in the history
To be sure that every type part is on a new line, adding a linebreak after every will give a more stable result
  • Loading branch information
w3nl authored Sep 23, 2024
1 parent a84d6d6 commit d9f3525
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/typegen/src/typegen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ export async function main() {
}

console.log(imports, '\n');
console.log(schemaTypes);
console.log(operationTypings);
console.log(schemaTypes, '\n');
console.log(operationTypings, '\n');

if (opts.typeAliases && aliases?.length) {
console.log(`\n${aliases}`);
Expand Down

0 comments on commit d9f3525

Please sign in to comment.