We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3663417 commit c098062Copy full SHA for c098062
packages/doxdox-core/src/utils.ts
@@ -2,7 +2,7 @@ import { EOL } from 'os';
2
3
import { promises as fs } from 'fs';
4
5
-import { resolve, join, dirname } from 'path';
+import { resolve, dirname } from 'path';
6
7
import { fileURLToPath } from 'url';
8
@@ -30,7 +30,7 @@ export const findFileInPath = async (
30
? dirname(input)
31
: input;
32
33
- const filePath = resolve(join(inputDirectory, fileName));
+ const filePath = resolve(inputDirectory, fileName);
34
35
const fileStat = await fs.stat(filePath);
36
0 commit comments