4 Commits

4 changed files with 9 additions and 9 deletions

View File

@@ -1,9 +1,3 @@
{
"scopes": [
"commands",
"changelog",
"readme",
"release",
"config"
]
"scopes": ["commands", "changelog", "readme", "release", "config"]
}

View File

@@ -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

View File

@@ -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": {

View File

@@ -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"
);