-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcheck-missing-deps.js
50 lines (43 loc) · 1.35 KB
/
check-missing-deps.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
const check = require('dependency-check');
const globby = require('globby');
const defaultPaths = ['packages/**/package.json', '!packages/**/node_modules/**/package.json'];
const dependencyAnalyzer = async (args = {}) => {
let { ignorePaths = [] } = args;
let exitCode = 0;
ignorePaths = Array.isArray(ignorePaths) ? ignorePaths : [ignorePaths];
const globs = [...defaultPaths, ...ignorePaths];
const files = await globby(globs, {
absolute: true
});
await Promise.all(
files.map(async (file) => {
const data = await check({
path: file,
entries: [],
noDefaultEntries: false,
extensions: ['.js']
});
const pkg = data.package;
const deps = data.used;
const missing = check.missing(pkg, deps, {
excludeDev: false,
excludePeer: false,
ignore: [
`${pkg.name}` // Can ignore packages that require their own compiled modules
]
});
if (missing.length > 0) {
// eslint-disable-next-line no-console
console.log(
`Run the following command to add missing packages to ${pkg.name}:
yarn workspace ${pkg.name} add ${missing.map((m) => `${m}`).join(' ')}
`
);
exitCode = 1;
}
})
);
// eslint-disable-next-line unicorn/no-process-exit
process.exit(exitCode);
};
dependencyAnalyzer();