Skip to content

Commit 052aa2a

Browse files
committed
include private pacakges when deciding dependents
1 parent a075b5f commit 052aa2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/ci-test/tasks.ts

Lines changed: 1 addition & 1 deletion
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)