Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
ebfa3859fc
|
|||
| 782894dae3 |
@@ -1,5 +1,8 @@
|
||||
# Changelog
|
||||
Generation of this changelog is based on commits
|
||||
## v1.10.1
|
||||
### Fixes
|
||||
- [782894dae] - **commands**: failure to cancel commit creation
|
||||
## v1.10.0
|
||||
### Features
|
||||
- [d707aaffe] - **config**: allow RCZ configs to be located in a folder (#15)
|
||||
@@ -7,6 +10,7 @@ Generation of this changelog is based on commits
|
||||
- [83d655931] - **commands**: warn on >250 line commits, improve text (#13)
|
||||
- [f371102a8] - **commands**: add aliases to main commands
|
||||
### Miscellaneous
|
||||
- [399f65dab] - **release**: v1.10.0
|
||||
- [28e1caf28] - push to main post release
|
||||
## v1.9.0
|
||||
### Features
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@resultium/rcz",
|
||||
"version": "1.10.0",
|
||||
"version": "1.10.1",
|
||||
"description": "Resultium commit standardization library, based on conventional commits",
|
||||
"main": "./dist/index.js",
|
||||
"bin": {
|
||||
|
||||
@@ -123,7 +123,7 @@ const program = new Command();
|
||||
program
|
||||
.name("rcz")
|
||||
.description("Resultium commit standardization command-line interface")
|
||||
.version("1.10.0");
|
||||
.version("1.10.1");
|
||||
|
||||
program
|
||||
.command("commit")
|
||||
@@ -177,6 +177,11 @@ program
|
||||
cancel("Commit creation cancelled");
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
if (!proceedCommitting) {
|
||||
cancel("Cancelled, please split this commit into smaller ones");
|
||||
process.exit(0);
|
||||
}
|
||||
}
|
||||
|
||||
const type: string | symbol = await select({
|
||||
|
||||
Reference in New Issue
Block a user