Skip to content

Commit 78943f0

Browse files
committed
Exclude test-snaps from README graph
1 parent 0970e9e commit 78943f0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/update-readme-content.mts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ async function retrieveWorkspaces(): Promise<Workspace[]> {
6161
.split('\n')
6262
.map((line) => JSON.parse(line))
6363
.filter(
64-
(workspace) => !workspace.location.startsWith('packages/examples/'),
64+
(workspace) =>
65+
!workspace.location.startsWith('packages/examples/') &&
66+
!workspace.location.startsWith('packages/test-snaps'),
6567
);
6668
}
6769

0 commit comments

Comments
 (0)