forked from PipedreamHQ/pipedream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfindDuplicateKeys.js
68 lines (61 loc) · 1.94 KB
/
findDuplicateKeys.js
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
const path = require('path');
const fs = require('fs');
const { readdir } = fs.promises;
const rootDir = path.resolve(__dirname, "..");
const componentsDir = path.join(rootDir, "components");
const excludeDirs = ['node_modules', '.git', 'dist'];
const includedExtensions = ['.mjs', '.js', '.mts', '.ts'];
const excludedExtensions = [...includedExtensions.map((ext) => `.app${ext}`)];
function included(dirent) {
if (dirent.isDirectory()) {
return !excludeDirs.includes(dirent.name);
}
return includedExtensions.includes(path.extname(dirent.name))
&& !excludedExtensions.find((ext) => dirent.name.endsWith(ext))
&& !dirent.name.includes("test-event.mjs")
&& !dirent.name.includes("common-");
}
async function* getFiles(dir) {
const dirents = await readdir(dir, { withFileTypes: true });
for (const dirent of dirents) {
if (!included(dirent)) {
continue;
}
const res = path.resolve(dir, dirent.name);
if (dirent.isDirectory()) {
yield* getFiles(res);
} else {
yield res;
}
}
}
async function getDuplicateKeys(dir) {
const filepathsByKey = {};
const duplicateKeys = new Set();
for await (const f of getFiles(dir)) {
const data = fs.readFileSync(f, "utf8");
const md = data.match(/['"]?key['"]?: ['"]([^'"]+)/);
if (!md) continue;
const key = md[1];
if (filepathsByKey[key]) {
duplicateKeys.add(key);
} else {
filepathsByKey[key] = [];
}
filepathsByKey[key].push(f);
}
return { duplicateKeys, filepathsByKey };
}
async function main() {
const { duplicateKeys, filepathsByKey } = await getDuplicateKeys(componentsDir);
if (duplicateKeys.size) {
duplicateKeys.forEach((key) => {
console.error(`[!] found duplicate component key '${key}' in files: ${filepathsByKey[key].join(', ')}`);
})
throw new Error("Found duplicate component keys");
}
}
main().catch((err) => {
const core = require('@actions/core');
core.setFailed(err);
});