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.
lastReleasePos
1 parent ed07836 commit e58c099Copy full SHA for e58c099
scripts/get-commit-list.ts
@@ -3,7 +3,7 @@ import { execSync } from 'child_process';
3
function run(): void {
4
const commits = execSync('git log --format="- %s"').toString().split('\n');
5
6
- const lastReleasePos = commits.findIndex(commit => /- meta(.*)changelog/i.test(commit));
+ const lastReleasePos = commits.findIndex(commit => /- meta\(changelog\)/i.test(commit));
7
8
const newCommits = commits.splice(0, lastReleasePos).filter(commit => {
9
// Filter out merge commits
0 commit comments