We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1578387 commit a58a8f7Copy full SHA for a58a8f7
scripts/github.js
@@ -12,9 +12,10 @@ const since = process.env.GITHUB_ACTION
12
: "";
13
14
const lernaList = JSON.parse(
15
- execSync(`lerna list --json ${packageFromRef ? "" : since}`, {
16
- stdio: ["ignore", "pipe", "ignore"],
17
- }).toString(),
+ execSync(
+ `lerna list --json --include-dependencies --include-dependents ${packageFromRef ? "" : since}`,
+ { stdio: ["ignore", "pipe", "ignore"] },
18
+ ).toString(),
19
);
20
21
const ref = process.env.GITHUB_SHA ?? "HEAD";
0 commit comments