@@ -37,9 +37,9 @@ async function config() {
37
37
const config = {
38
38
branches : [
39
39
'release' ,
40
- { name : 'alpha' , prerelease : true } ,
41
- { name : 'beta' , prerelease : true } ,
42
- 'next-major' ,
40
+ // { name: 'alpha', prerelease: true },
41
+ // { name: 'beta', prerelease: true },
42
+ // 'next-major',
43
43
// Long-Term-Support branches
44
44
// { name: '1.x.x', range: '1.x.x', channel: '1.x.x' },
45
45
// { name: '2.x.x', range: '2.x.x', channel: '2.x.x' },
@@ -66,7 +66,7 @@ async function config() {
66
66
[ '@semantic-release/release-notes-generator' , {
67
67
preset : 'angular' ,
68
68
parserOpts : {
69
- noteKeywords : [ 'BREAKING CHANGE' , 'BREAKING CHANGES' , 'BREAKING' ]
69
+ noteKeywords : [ 'BREAKING CHANGE' ]
70
70
} ,
71
71
writerOpts : {
72
72
commitsSort : [ 'subject' , 'scope' ] ,
@@ -91,15 +91,15 @@ async function config() {
91
91
releasedLabels : [ 'state:released<%= nextRelease.channel ? `-\${nextRelease.channel}` : "" %>' ]
92
92
} ] ,
93
93
// Back-merge module runs last because if it fails it should not impede the release process
94
- [
95
- "@saithodev/semantic-release-backmerge" ,
96
- {
97
- "branches" : [
98
- { from : "beta" , to : "alpha" } ,
99
- { from : "release" , to : "beta" } ,
100
- ]
101
- }
102
- ] ,
94
+ // [
95
+ // "@saithodev/semantic-release-backmerge",
96
+ // {
97
+ // "branches": [
98
+ // { from: "beta", to: "alpha" },
99
+ // { from: "release", to: "beta" },
100
+ // ]
101
+ // }
102
+ // ],
103
103
] ,
104
104
} ;
105
105
0 commit comments