Skip to content

Commit 0bd4694

Browse files
Merge pull request #81 from newrelic/local-dev-test
feat!: added release file changes
2 parents d25bf97 + 77461fa commit 0bd4694

File tree

1 file changed

+18
-8
lines changed

1 file changed

+18
-8
lines changed

.releaserc.json

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
11
{
2-
"branches": ["master","testing-feature"],
2+
"branches": ["master", "testing-feature"],
33
"plugins": [
44
[
55
"@semantic-release/commit-analyzer",
66
{
7-
"preset": "angular",
7+
"preset": "conventionalcommits",
88
"releaseRules": [
99
{"breaking": true, "release": "major"},
1010
{"type": "feat", "release": "minor"},
1111
{"type": "fix", "release": "patch"},
1212
{"type": "perf", "release": "patch"},
1313
{"type": "revert", "release": "patch"},
14+
{"type": "build", "release": "patch"},
15+
{"type": "ci", "release": false},
1416
{"type": "docs", "release": false},
1517
{"type": "chore", "release": false},
1618
{"type": "refactor", "release": false},
17-
{"type": "style", "release": false}
19+
{"type": "style", "release": false},
20+
{"type": "test", "release": false}
1821
]
1922
}
2023
],
@@ -24,10 +27,17 @@
2427
"preset": "conventionalcommits",
2528
"presetConfig": {
2629
"types": [
27-
{"type": "feat", "section": "Features"},
28-
{"type": "fix", "section": "Bug Fixes"},
29-
{"type": "perf", "section": "Performance Improvements"},
30-
{"type": "revert", "section": "Reverts"}
30+
{"type": "feat", "section": "Features", "hidden": false},
31+
{"type": "fix", "section": "Bug Fixes", "hidden": false},
32+
{"type": "perf", "section": "Performance Improvements", "hidden": false},
33+
{"type": "revert", "section": "Reverts", "hidden": false},
34+
{"type": "build", "section": "Build System", "hidden": false},
35+
{"type": "ci", "section": "CI/CD", "hidden": true},
36+
{"type": "docs", "section": "Documentation", "hidden": true},
37+
{"type": "chore", "section": "Chores", "hidden": true},
38+
{"type": "refactor", "section": "Code Refactoring", "hidden": true},
39+
{"type": "style", "section": "Styling", "hidden": true},
40+
{"type": "test", "section": "Tests", "hidden": true}
3141
]
3242
}
3343
}
@@ -45,4 +55,4 @@
4555
}
4656
]
4757
]
48-
}
58+
}

0 commit comments

Comments
 (0)