Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 63a6c9feab | |||
| 8cb67f2cfd | |||
| 8dbe266e39 | |||
| 58f4dde9c9 |
@@ -1,9 +1,3 @@
|
||||
{
|
||||
"scopes": [
|
||||
"commands",
|
||||
"changelog",
|
||||
"readme",
|
||||
"release",
|
||||
"config"
|
||||
]
|
||||
"scopes": ["commands", "changelog", "readme", "release", "config"]
|
||||
}
|
||||
|
||||
@@ -2,6 +2,12 @@
|
||||
|
||||
Generation of this changelog is based on commits
|
||||
|
||||
## v1.5.1
|
||||
|
||||
### Fixes
|
||||
|
||||
- [6c663cf7f] - **commands**: allow chore type in validation regex
|
||||
|
||||
## v1.5.0
|
||||
|
||||
### Features
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@resultium/rcz",
|
||||
"version": "1.5.1",
|
||||
"version": "1.5.2",
|
||||
"description": "Resultium commit standardization library, based on conventional commits",
|
||||
"main": "./dist/index.js",
|
||||
"bin": {
|
||||
|
||||
@@ -467,7 +467,7 @@ program
|
||||
config?.types?.map((type) => type.value).join("|") ||
|
||||
"feat|fix|build|ci|docs|perf|refactor|chore"
|
||||
})(\\((${
|
||||
config?.scopes ? [...config?.scopes, "release"] : "..*"
|
||||
config?.scopes ? [...config?.scopes, "release"].join("|") : "..*"
|
||||
})\\))?!?: .* ?(\\(..*\\))?((\n\n..*)?(\n\n..*)?)?`,
|
||||
"gm"
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user