Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
6e63867ca6
|
|||
| 539168195e |
@@ -1,7 +1,11 @@
|
||||
# Changelog
|
||||
Generation of this changelog is based on commits
|
||||
## v1.12.4
|
||||
### Fixes
|
||||
- [539168195] - incorrect commander dependency type
|
||||
## v1.12.3
|
||||
### Miscellaneous
|
||||
- [673b02052] - **release**: v1.12.3
|
||||
- [5e6900e70] - downgrade commander to v10
|
||||
## v1.12.2
|
||||
### Fixes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@resultium/rcz",
|
||||
"version": "1.12.3",
|
||||
"version": "1.12.4",
|
||||
"license": "GPL-3.0-or-later",
|
||||
"description": "Resultium commit standardization library, inspired by conventional commits",
|
||||
"main": "./dist/index.js",
|
||||
@@ -31,13 +31,13 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@clack/prompts": "^0.7.0",
|
||||
"commander": "10.0.1",
|
||||
"semver": "^7.5.4",
|
||||
"simple-git": "^3.21.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.10.4",
|
||||
"@types/semver": "^7.5.6",
|
||||
"commander": "^10.0.1",
|
||||
"typescript": "^5.3.3"
|
||||
}
|
||||
}
|
||||
|
||||
8
pnpm-lock.yaml
generated
8
pnpm-lock.yaml
generated
@@ -8,6 +8,9 @@ dependencies:
|
||||
'@clack/prompts':
|
||||
specifier: ^0.7.0
|
||||
version: 0.7.0
|
||||
commander:
|
||||
specifier: 10.0.1
|
||||
version: 10.0.1
|
||||
semver:
|
||||
specifier: ^7.5.4
|
||||
version: 7.5.4
|
||||
@@ -22,9 +25,6 @@ devDependencies:
|
||||
'@types/semver':
|
||||
specifier: ^7.5.6
|
||||
version: 7.5.6
|
||||
commander:
|
||||
specifier: ^10.0.1
|
||||
version: 10.0.1
|
||||
typescript:
|
||||
specifier: ^5.3.3
|
||||
version: 5.3.3
|
||||
@@ -73,7 +73,7 @@ packages:
|
||||
/commander@10.0.1:
|
||||
resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==}
|
||||
engines: {node: '>=14'}
|
||||
dev: true
|
||||
dev: false
|
||||
|
||||
/debug@4.3.4:
|
||||
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
|
||||
|
||||
@@ -157,7 +157,7 @@ const program = new Command();
|
||||
program
|
||||
.name("rcz")
|
||||
.description("Resultium commit standardization command-line interface")
|
||||
.version("1.12.3");
|
||||
.version("1.12.4");
|
||||
|
||||
program
|
||||
.command("commit")
|
||||
|
||||
Reference in New Issue
Block a user