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.
1 parent 49b197d commit b53e89cCopy full SHA for b53e89c
src/check-dependency-bumps.ts
@@ -115,7 +115,7 @@ async function parseDiff(
115
}
116
117
// Check if we're leaving a section
118
- if ((currentSection && line.trim() === '},') || line.trim() === '}') {
+ if (currentSection && (line.trim() === '},' || line.trim() === '}')) {
119
// Check if next line is another section we care about
120
const nextLine = lines[i + 1];
121
0 commit comments