Skip to content

Commit 5d34f9b

Browse files
Copilotabraham
andcommitted
Run prettier format to fix code style issues
Co-authored-by: abraham <[email protected]>
1 parent 156dcf1 commit 5d34f9b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/__tests__/main.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ describe('main', () => {
3131
expect(schema.components).toBeDefined();
3232
expect(schema.components.schemas).toBeDefined();
3333
});
34-
});
34+
});

src/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ function main() {
3535
// Write schema to file
3636
const distDir = path.join(__dirname, '..', 'dist');
3737
const schemaPath = path.join(distDir, 'schema.json');
38-
38+
3939
// Ensure dist directory exists
4040
if (!fs.existsSync(distDir)) {
4141
fs.mkdirSync(distDir, { recursive: true });
4242
}
43-
43+
4444
// Write schema to file
4545
fs.writeFileSync(schemaPath, generator.toJSON());
4646
console.log(`Schema written to ${schemaPath}`);

0 commit comments

Comments
 (0)