tianji/scripts/build-openapi-schema.ts

17 lines
488 B
TypeScript
Raw Permalink Normal View History

2023-10-28 19:00:10 +00:00
import { trpcOpenapiDocument } from '../src/server/trpc';
import fs from 'fs-extra';
import path from 'path';
2024-08-24 19:18:36 +00:00
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
2023-10-28 19:00:10 +00:00
const target = path.resolve(__dirname, '../website/openapi.json');
fs.writeJSON(target, trpcOpenapiDocument)
.then(() => {
console.log('openapi schema has been write into:', target);
})
.catch((err) => {
console.error(err);
});