Skip to content

Commit 4765182

Browse files
authored
include private pacakges when deciding dependents (#5213)
1 parent cce4f65 commit 4765182

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/ci-test/tasks.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export async function getTestTasks(): Promise<TestTask[]> {
9292
const allPackageNames = packageInfo.map(info => info.name);
9393

9494
const depGraph: { [key: string]: any } = JSON.parse(
95-
(await exec('npx lerna ls --graph', { cwd: root })).stdout
95+
(await exec('npx lerna ls --all --graph', { cwd: root })).stdout
9696
);
9797
const diff = await git.diff(['--name-only', 'origin/master...HEAD']);
9898
const changedFiles = diff.split('\n');

0 commit comments

Comments
 (0)