-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(presets): add support for '.versionrc' customized presets
- Loading branch information
Loïs Bégué
committed
Apr 28, 2020
1 parent
6ecf98d
commit 437a144
Showing
4 changed files
with
41 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
{ | ||
"types": [ | ||
{"type":"feat","section":"Features"}, | ||
{"type":"fix","section":"Bug Fixes"}, | ||
{"type":"docs","section":"Documentation", "hidden": false}, | ||
{"type":"chore","section":"Modification of the app structure/core", "hidden": false}, | ||
{"type":"test","section":"Tests", "hidden": true}, | ||
{"type":"build","section":"Build System", "hidden": false}, | ||
{"type": "style", "hidden": true}, | ||
{"type": "refactor", "hidden": true}, | ||
{"type": "perf", "hidden": true}, | ||
{"type":"ci","hidden":true} | ||
{"type": "feat", "section":"Features"}, | ||
{"type": "fix", "section":"Bug Fixes"}, | ||
{"type": "chore", "section":"Chore"}, | ||
{"type": "docs", "section":"Documentation"}, | ||
|
||
{"type": "test", "section":"Tests", "hidden": true}, | ||
{"type": "build", "section":"Build System", "hidden": true}, | ||
{"type": "style", "section":"Styling", "hidden": true}, | ||
{"type": "refactor", "section":"Refactoring", "hidden": true}, | ||
{"type": "perf", "section":"Performance", "hidden": true}, | ||
{"type": "ci", "section":"CI/CD", "hidden":true} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters