Skip to content

Commit 8211946

Browse files
committed
chore: move src into lib
1 parent b584c86 commit 8211946

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

bin/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { join } from 'node:path';
33
import yargs from 'yargs';
44
import { hideBin } from 'yargs/helpers';
5-
import { build } from '../src/build.js';
5+
import { build } from '../lib/build.js';
66

77
const cliArgs = await yargs(hideBin(process.argv))
88
.usage('Usage: $0 -i [string] -o [string]')

src/build.ts renamed to lib/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { writeFile } from 'node:fs/promises';
22
import type { OpenAPIV3 } from 'openapi-types';
33
import { format } from 'prettier';
4-
import { processOpenApiDocument } from '../lib/process-document.js';
4+
import { processOpenApiDocument } from './process-document.js';
55

66
export async function build(
77
inputFile: string,

0 commit comments

Comments
 (0)