Skip to content

Commit f3177b4

Browse files
author
OneSignal
committed
feat: add v5.3.0-beta1 package updates
1 parent 9b5ab18 commit f3177b4

File tree

1 file changed

+73
-0
lines changed

1 file changed

+73
-0
lines changed

.releaserc.json

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{
2+
"branches": ["main"],
3+
"tagFormat": "${version}",
4+
"plugins": [
5+
[
6+
"@semantic-release/release-notes-generator",
7+
{
8+
"preset": "conventionalcommits",
9+
"writerOpts": {
10+
"types": [
11+
{
12+
"type": "feat",
13+
"section": "Features"
14+
},
15+
{
16+
"type": "fix",
17+
"section": "Bug Fixes"
18+
},
19+
{
20+
"type": "docs",
21+
"section": "Documentation",
22+
"hidden": false
23+
},
24+
{
25+
"type": "deps",
26+
"section": "Dependency Updates",
27+
"hidden": false
28+
},
29+
{
30+
"type": "chore",
31+
"hidden": true
32+
},
33+
{
34+
"type": "style",
35+
"hidden": true
36+
},
37+
{
38+
"type": "refactor",
39+
"hidden": true
40+
},
41+
{
42+
"type": "perf",
43+
"hidden": true
44+
},
45+
{
46+
"type": "test",
47+
"hidden": true
48+
},
49+
{
50+
"type": "ci",
51+
"hidden": true
52+
}
53+
]
54+
}
55+
}
56+
],
57+
[
58+
"@semantic-release/changelog",
59+
{
60+
"changelogFile": "CHANGELOG.md",
61+
"changelogTitle": "# Changelog"
62+
}
63+
],
64+
[
65+
"@semantic-release/git",
66+
{
67+
"assets": ["**"],
68+
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes} [skip ci]"
69+
}
70+
],
71+
"@semantic-release/github"
72+
]
73+
}

0 commit comments

Comments
 (0)