We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b584c86 commit 8211946Copy full SHA for 8211946
2 files changed
bin/index.ts
@@ -2,7 +2,7 @@
2
import { join } from 'node:path';
3
import yargs from 'yargs';
4
import { hideBin } from 'yargs/helpers';
5
-import { build } from '../src/build.js';
+import { build } from '../lib/build.js';
6
7
const cliArgs = await yargs(hideBin(process.argv))
8
.usage('Usage: $0 -i [string] -o [string]')
src/build.ts lib/build.tssrc/build.ts renamed to lib/build.ts
@@ -1,7 +1,7 @@
1
import { writeFile } from 'node:fs/promises';
import type { OpenAPIV3 } from 'openapi-types';
import { format } from 'prettier';
-import { processOpenApiDocument } from '../lib/process-document.js';
+import { processOpenApiDocument } from './process-document.js';
export async function build(
inputFile: string,
0 commit comments