Skip to content

Commit c098062

Browse files
committed
Simplified path method calls.
1 parent 3663417 commit c098062

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/doxdox-core/src/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { EOL } from 'os';
22

33
import { promises as fs } from 'fs';
44

5-
import { resolve, join, dirname } from 'path';
5+
import { resolve, dirname } from 'path';
66

77
import { fileURLToPath } from 'url';
88

@@ -30,7 +30,7 @@ export const findFileInPath = async (
3030
? dirname(input)
3131
: input;
3232

33-
const filePath = resolve(join(inputDirectory, fileName));
33+
const filePath = resolve(inputDirectory, fileName);
3434

3535
const fileStat = await fs.stat(filePath);
3636

0 commit comments

Comments
 (0)