-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrepo-paths.ts
45 lines (38 loc) · 1.8 KB
/
repo-paths.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import {readdir, stat} from 'fs-extra';
import {join} from 'path';
/**
* Path to the repo's root. Does not use the package name because the source code could
* theoretically be cloned into any folder. "src" is used for the ts source code files (so they CAN
* be run directly without transpiling it into JS) and "dist" is used for the transpiled JS output directory.
*/
export const repoRootDir = __dirname.replace(/(?:src|dist).*/, '');
export const filesDir = join(repoRootDir, 'files');
export const sampleFilesDir = join(filesDir, 'sample-files');
export const dummyPdfPath = join(sampleFilesDir, 'dummy.pdf');
export const sanitizedFilesDir = join(sampleFilesDir, 'sanitized');
export const tempOutputDir = join(filesDir, 'temp-output');
export const temp_sanitizerRawTestFilePath = join(tempOutputDir, 'last-raw-text-for-sanitizer.txt');
export const temp_sanitizerSanitizedTextFilePath = join(tempOutputDir, 'last-sanitized-text.txt');
export const prettierConfigPath = join(repoRootDir, '.prettierrc.js');
export const packageJson = join(repoRootDir, 'package.json');
export async function getAllRecursiveFiles(
parentDirectory: string,
includeFolders = false,
): Promise<Set<string>> {
const firstLevelFiles = await readdir(parentDirectory);
return await firstLevelFiles.reduce(async (rawAccum: Promise<Set<string>>, child) => {
const accum = await rawAccum;
const path = join(parentDirectory, child);
if ((await stat(path)).isDirectory()) {
if (includeFolders) {
accum.add(child);
}
(await getAllRecursiveFiles(path)).forEach((ancestor) =>
accum.add(join(child, ancestor)),
);
} else {
accum.add(child);
}
return accum;
}, Promise.resolve(new Set<string>()));
}