forked from phork/phorkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.releaserc.json
55 lines (55 loc) · 1.21 KB
/
.releaserc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"config": "conventional-changelog-gitmoji-config",
"releaseRules": [
{ "type": "build", "release": "patch" },
{ "scope": "major", "release": "major" },
{ "scope": "minor", "release": "minor" },
{ "scope": "no-release", "release": false }
]
}
],
[
"@semantic-release/release-notes-generator",
{
"config": "conventional-changelog-gitmoji-config"
}
],
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md",
"changelogTitle": "# Changelog"
}
],
[
"@semantic-release/npm",
{
"registry": "https://npm.pkg.github.com",
"pkgRoot": "./lib"
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "npm version ${nextRelease.version} --no-git-tag-version"
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": ":bookmark: chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}