q-floodfill
Version:
Optimized, non-recursive flood fill using a scan line search
45 lines (44 loc) • 1.3 kB
JavaScript
module.exports = {
branches: ['master'],
plugins: [
[
'@semantic-release/commit-analyzer',
{
preset: 'conventionalcommits',
releaseRules: [
{ type: 'refactor', release: 'patch' },
{ type: 'style', release: 'patch' },
],
parserOpts: {
noteKeywords: ['BREAKING CHANGE', 'BREAKING CHANGES'],
},
},
],
[
'@semantic-release/release-notes-generator',
{
preset: 'angular',
parserOpts: {
noteKeywords: [
'BREAKING CHANGE',
'BREAKING CHANGES',
'BREAKING',
],
},
writerOpts: {
commitsSort: ['subject', 'scope'],
},
},
],
'@semantic-release/github',
'@semantic-release/npm',
[
'@semantic-release/git',
{
assets: ['package.json'],
message:
'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}',
},
],
],
}