git-conventional-commits
Advanced tools
Comparing version 1.0.5 to 1.0.6
@@ -16,4 +16,4 @@ const Config = require("./config"); | ||
yargs.option('version', { | ||
alias: 'v', | ||
yargs.option('release', { | ||
alias: 'r', | ||
desc: 'Release version', | ||
@@ -50,5 +50,5 @@ requiresArg: true | ||
let releaseName = argv.version || await commitConvention.version(conventionalCommits); | ||
if (argv.versionName) { | ||
releaseName += ` - ${argv.versionName}`; | ||
let releaseName = argv.release || await commitConvention.version(conventionalCommits); | ||
if (argv.name) { | ||
releaseName += ` - ${argv.name}`; | ||
} | ||
@@ -55,0 +55,0 @@ |
{ | ||
"name": "git-conventional-commits", | ||
"version": "1.0.5", | ||
"version": "1.0.6", | ||
"description": "git conventional commits util", | ||
@@ -5,0 +5,0 @@ "licence": "MIT", |
@@ -1,2 +0,2 @@ | ||
# Git Conventional Changelog Generator | ||
# Git Conventional Commits | ||
@@ -19,3 +19,3 @@ [![npm](https://img.shields.io/npm/v/git-conventional-commits)](https://www.npmjs.com/package/git-conventional-commits) | ||
### Usage | ||
* Create [config file](#config-file) `git-conventinal-commits init` | ||
* Create [config file](#config-file) `git-conventional-commits init` | ||
* Adjust config `git-conventional-commits.json` to your needs | ||
@@ -22,0 +22,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
28964