forked from graphql/graphql-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.ts
127 lines (108 loc) · 3.73 KB
/
utils.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
import * as assert from 'node:assert';
import * as childProcess from 'node:child_process';
import * as fs from 'node:fs';
import * as path from 'node:path';
import * as prettier from 'prettier';
export function localRepoPath(...paths: ReadonlyArray<string>): string {
return path.join(__dirname, '..', ...paths);
}
export function exec(command: string, options?: { cwd: string }): void {
childProcess.execSync(command, options);
}
export function execOutput(command: string, options?: { cwd: string }): string {
const output = childProcess.execSync(command, {
maxBuffer: 10 * 1024 * 1024, // 10MB
stdio: ['inherit', 'pipe', 'inherit'],
encoding: 'utf-8',
...options,
});
return output.trimEnd();
}
export function readdirRecursive(
dirPath: string,
opts: { ignoreDir?: RegExp } = {},
): Array<string> {
const { ignoreDir } = opts;
const result = [];
for (const dirent of fs.readdirSync(dirPath, { withFileTypes: true })) {
const name = dirent.name;
if (!dirent.isDirectory()) {
result.push(dirent.name);
continue;
}
if (ignoreDir?.test(name)) {
continue;
}
const list = readdirRecursive(path.join(dirPath, name), opts).map((f) =>
path.join(name, f),
);
result.push(...list);
}
return result.map((filepath) => './' + filepath);
}
export function showDirStats(dirPath: string): void {
const fileTypes: {
[filetype: string]: { filepaths: Array<string>; size: number };
} = {};
let totalSize = 0;
for (const filepath of readdirRecursive(dirPath)) {
const name = filepath.split(path.sep).at(-1);
assert(name != null);
const [base, ...splitExt] = name.split('.');
const ext = splitExt.join('.');
const filetype = ext ? '*.' + ext : base;
fileTypes[filetype] = fileTypes[filetype] || { filepaths: [], size: 0 };
const { size } = fs.lstatSync(path.join(dirPath, filepath));
totalSize += size;
fileTypes[filetype].size += size;
fileTypes[filetype].filepaths.push(filepath);
}
const stats: Array<[string, number]> = [];
for (const [filetype, typeStats] of Object.entries(fileTypes)) {
const numFiles = typeStats.filepaths.length;
if (numFiles > 1) {
stats.push([filetype + ' x' + numFiles, typeStats.size]);
} else {
stats.push([typeStats.filepaths[0], typeStats.size]);
}
}
stats.sort((a, b) => b[1] - a[1]);
const prettyStats = stats.map(([type, size]) => [
type,
(size / 1024).toFixed(2) + ' KB',
]);
const typeMaxLength = Math.max(...prettyStats.map((x) => x[0].length));
const sizeMaxLength = Math.max(...prettyStats.map((x) => x[1].length));
for (const [type, size] of prettyStats) {
console.log(
type.padStart(typeMaxLength) + ' | ' + size.padStart(sizeMaxLength),
);
}
console.log('-'.repeat(typeMaxLength + 3 + sizeMaxLength));
const totalMB = (totalSize / 1024 / 1024).toFixed(2) + ' MB';
console.log(
'Total'.padStart(typeMaxLength) + ' | ' + totalMB.padStart(sizeMaxLength),
);
}
const prettierConfig = JSON.parse(
fs.readFileSync(localRepoPath('.prettierrc'), 'utf-8'),
);
export function writeGeneratedFile(filepath: string, body: string): void {
const formatted = prettier.format(body, { filepath, ...prettierConfig });
fs.writeFileSync(filepath, formatted);
}
interface PackageJSON {
version: string;
private?: boolean;
repository?: { url?: string };
scripts?: { [name: string]: string };
type?: string;
exports: { [path: string]: string };
types?: string;
typesVersions: { [ranges: string]: { [path: string]: Array<string> } };
devDependencies?: { [name: string]: string };
publishConfig?: { tag?: string };
}
export function readPackageJSON(): PackageJSON {
return JSON.parse(fs.readFileSync(localRepoPath('package.json'), 'utf-8'));
}