forked from ovh/manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist-dependents.js
executable file
·40 lines (36 loc) · 1 KB
/
list-dependents.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
#!/usr/bin/env node
const program = require('commander');
const execa = require('execa');
const reduce = require('lodash/reduce');
const uniq = require('lodash/uniq');
async function getPackageGraph() {
try {
const { stdout } = await execa.command(`lerna list --graph --all`, {
shell: true,
});
return JSON.parse(stdout);
} catch (error) {
return [];
}
}
const findDependents = (packages, packageName) =>
reduce(
packages,
(acc, dependencies, name) => {
if (dependencies.includes(packageName)) {
return uniq([...acc, name, ...findDependents(packages, name)]);
}
return acc;
},
[],
);
program
.description('List all packages impacted by the change of given package')
.usage('<packageName>')
.arguments('<packageName>')
.action(async (packageName) => {
const packageGraph = await getPackageGraph();
const dependents = findDependents(packageGraph, packageName);
dependents.map((d) => console.log(d));
})
.parse(process.argv);