Skip to content

Commit 2b157de

Browse files
committed
chore: Ignore workspace packages in deps report
1 parent df0c4dd commit 2b157de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/semantic-release/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ function renderDependencies(input: Record<string, string>, heading: string) {
101101
Object.entries(input).filter(
102102
([packageName, version]) =>
103103
packageName.startsWith('@socialgouv/e2esdk-') &&
104-
version !== '0.0.0-internal'
104+
!['0.0.0-internal', 'workspace:*'].includes(version)
105105
)
106106
)
107107
return Object.keys(deps).length > 0

0 commit comments

Comments
 (0)