@govbr-ds/release-config 5.0.1 → 5.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -4
- package/src/index.js +8 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@govbr-ds/release-config",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Configuração compartilhada do semantic-release para projetos do GovBR-DS",
|
|
6
6
|
"keywords": [
|
|
@@ -28,12 +28,13 @@
|
|
|
28
28
|
"src"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@govbr-ds/commit-types": "5.0.
|
|
31
|
+
"@govbr-ds/commit-types": "5.0.2",
|
|
32
32
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
33
|
-
"@semantic-release/
|
|
33
|
+
"@semantic-release/changelog": "^7.0.0",
|
|
34
|
+
"@semantic-release/git": "^11.0.1",
|
|
34
35
|
"@semantic-release/gitlab": "^13.3.3",
|
|
35
36
|
"@semantic-release/release-notes-generator": "^14.1.1",
|
|
36
37
|
"conventional-changelog-conventionalcommits": "10.2.1",
|
|
37
|
-
"semantic-release": "^25.0.
|
|
38
|
+
"semantic-release": "^25.0.8"
|
|
38
39
|
}
|
|
39
40
|
}
|
package/src/index.js
CHANGED
|
@@ -157,6 +157,13 @@ const releaseNotesGenerator = [
|
|
|
157
157
|
},
|
|
158
158
|
]
|
|
159
159
|
|
|
160
|
+
const changelogGenerator = [
|
|
161
|
+
'@semantic-release/changelog',
|
|
162
|
+
{
|
|
163
|
+
changelogTitle: '# CHANGELOG',
|
|
164
|
+
},
|
|
165
|
+
]
|
|
166
|
+
|
|
160
167
|
const gitlab = [
|
|
161
168
|
'@semantic-release/gitlab',
|
|
162
169
|
{
|
|
@@ -178,7 +185,7 @@ const git = [
|
|
|
178
185
|
},
|
|
179
186
|
]
|
|
180
187
|
|
|
181
|
-
const basePlugins = [commitAnalyzer, releaseNotesGenerator, gitlab]
|
|
188
|
+
const basePlugins = [commitAnalyzer, changelogGenerator, releaseNotesGenerator, gitlab]
|
|
182
189
|
|
|
183
190
|
const releaseConfig = {
|
|
184
191
|
branches,
|