Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 63a6c9feab | |||
| 8cb67f2cfd | |||
| 8dbe266e39 | |||
| 58f4dde9c9 | |||
| 9586a567de | |||
| 6c663cf7fc | |||
| 535a62857c | |||
| 03f68e2912 |
@@ -1,9 +1,3 @@
|
|||||||
{
|
{
|
||||||
"scopes": [
|
"scopes": ["commands", "changelog", "readme", "release", "config"]
|
||||||
"commands",
|
|
||||||
"changelog",
|
|
||||||
"readme",
|
|
||||||
"release",
|
|
||||||
"config"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|||||||
17
CHANGELOG.md
17
CHANGELOG.md
@@ -2,6 +2,23 @@
|
|||||||
|
|
||||||
Generation of this changelog is based on commits
|
Generation of this changelog is based on commits
|
||||||
|
|
||||||
|
## v1.5.1
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
- [6c663cf7f] - **commands**: allow chore type in validation regex
|
||||||
|
|
||||||
|
## v1.5.0
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- [92f8126ab] - **commands**: add --amend option to commit sub-command
|
||||||
|
- [5080d71fb] - **config**: allow more config file names
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
- [53bb1437a] - **commands**: allow chore type (#7)
|
||||||
|
|
||||||
## v1.4.0
|
## v1.4.0
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@resultium/rcz",
|
"name": "@resultium/rcz",
|
||||||
"version": "1.5.0",
|
"version": "1.5.2",
|
||||||
"description": "Resultium commit standardization library, based on conventional commits",
|
"description": "Resultium commit standardization library, based on conventional commits",
|
||||||
"main": "./dist/index.js",
|
"main": "./dist/index.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
|
|||||||
@@ -465,9 +465,9 @@ program
|
|||||||
const testRegex = new RegExp(
|
const testRegex = new RegExp(
|
||||||
`(${
|
`(${
|
||||||
config?.types?.map((type) => type.value).join("|") ||
|
config?.types?.map((type) => type.value).join("|") ||
|
||||||
"feat|fix|build|ci|docs|perf|refactor"
|
"feat|fix|build|ci|docs|perf|refactor|chore"
|
||||||
})(\\((${
|
})(\\((${
|
||||||
config?.scopes ? [...config?.scopes, "release"] : "..*"
|
config?.scopes ? [...config?.scopes, "release"].join("|") : "..*"
|
||||||
})\\))?!?: .* ?(\\(..*\\))?((\n\n..*)?(\n\n..*)?)?`,
|
})\\))?!?: .* ?(\\(..*\\))?((\n\n..*)?(\n\n..*)?)?`,
|
||||||
"gm"
|
"gm"
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user