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.
2 parents 6ec24e8 + d665dae commit 43edbbbCopy full SHA for 43edbbb
renovate-changesets/index.ts
@@ -83,7 +83,8 @@ async function main() {
83
Array.from(changedFilesByWorkspace.entries())
84
.map(([workspace, files]) => [
85
workspace,
86
- files.filter(f => f.endsWith('package.json')),
+ // Ignore root package.json from the workspace, and check for package.json in the subfolders
87
+ files.filter(f => f !== 'package.json' && f.endsWith('package.json')),
88
])
89
.filter((workspaceChanges): workspaceChanges is [string, string[]] => {
90
const [_, files] = workspaceChanges;
0 commit comments