2.5.1 • Published 3 months ago

cz-vinyl v2.5.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

Commitizen adapter for formatting commit messages. Format commit messages with conventional commits.

cz-vinyl allows you to easily use emojis and ticket ID (JIRA, ...) in your commits using commitizen.

? Select the type of changes you're committing: (Use arrow keys or type to search)
> 🤖 chore: Build process or auxiliary tool changes
  🚀 ci: CI related changes
  📘 docs: Documentation only changes
  🔥 feat: A new feature
  🐞 fix: A bug fix
  ⚡ perf: A code change that improves performance
  💡 refactor: A code change that neither fixes a bug or adds a feature

Demo

cz-vinyl

OpenAI support

As from version 2.3.0 we now support OpenAI to generate your commit message! Create your own OpenAI account and provide this library your API key token to use it.

Payment

You pay for your own requests to OpenAI API. The package uses the 3.5-turbo model official model, that is ~15x times cheaper than GPT-4.

Installation

Globally

npm install --global cz-vinyl

# set as default adapter for your projects
echo '{ "path": "cz-vinyl" }' > ~/.czrc

Locally

npm install --save-dev cz-vinyl

Add this to your package.json:

"config": {
  "commitizen": {
    "path": "cz-vinyl"
  }
}

Usage

$ git cz

ESM support

cz-vinyl now supports only ESM modules, from version >1.6.2. For any issue regarding this, please visit this link https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c

Configuration

Like commitizen, you can specify the configuration of cz-vinyl through various options. Configuration can be set in environment variables or in the following files (the following files can also be configured in home directory):

  • a package.json property: "czvinyl": {...} or in ~/package.json, for example
  • a .czvinylrc file in JSON or YAML format
  • a .czvinylrc.json, .czvinylrc.yaml, .czvinylrc.yml, .czvinylrc.js, or .czvinylrc.cjs file
  • a inflint.config.ts, czvinyl.config.js, or czvinyl.config.cjs CommonJS module exporting an object

The default commit types, descriptions and emoji that are used are:

[
	{
		"description": "Build process or auxiliary tool changes",
		"emoji": "🤖",
		"value": "chore"
	},
	{
		"description": "CI related changes",
		"emoji": "🚀",
		"value": "ci"
	},
	{
		"description": "Documentation only changes",
		"emoji": "📘",
		"value": "docs"
	},
	{
		"description": "A new feature",
		"emoji": "🔥",
		"value": "feat"
	},
	{
		"description": "A bug fix",
		"emoji": "🐞",
		"value": "fix"
	},
	{
		"description": "A code change that improves performance",
		"emoji": "⚡",
		"value": "perf"
	},
	{
		"description": "A code change that neither fixes a bug or adds a feature",
		"emoji": "💡",
		"value": "refactor"
	},
	{
		"description": "Create a release commit",
		"emoji": "🔖",
		"value": "release"
	},
	{
		"description": "Markup, white-space, formatting, missing semi-colons...",
		"emoji": "🎨",
		"value": "style"
	},
	{
		"description": "Adding missing tests",
		"emoji": "✅",
		"value": "test"
	}
]
Environment variableKeyTypeDefaultDescription
CZ_HEADER_FORMATheaderFormatstring | (commitType: string, scope: string \| undefined, emoji: string \| undefined, ticketId: string \| undefined, subject: string) => string{type}: {emoji} [{ticket_id}] {subject}How the commit header will be formatted. Supported placeholders: type, scope, emoji, ticket_id, subject
CZ_BODY_FORMATbodyFormatstring | (commitType: string, scope: string \| undefined, ticketId: string \| undefined, body: string \| undefined) => string{body}How the commit body will be formatted. Supported placeholders: type, scope, ticket_id, body
commitTypes{ value: string; description: string, emoji?: string }[]See aboveThe commit types to work with.
CZ_MAX_COMMIT_LINE_WIDTHmaxCommitLineWidthnumber72Wraps the commit body message with max line width
CZ_TYPE_QUESTIONtypeQuestionstringSelect the type of changes you're committing:\nThe CLI question for type
CZ_SCOPE_QUESTIONscopeQuestionstringSpecify a scope:The CLI question for scope
CZ_SKIP_SCOPEskipScopebooleantrueWhether to prompt the user to a scope question
scopesstring[][]Available scopes (empty array allows free text)
CZ_TICKET_ID_QUESTIONticketIdQuestionstringType the JIRA Id (ex. V-12345):The CLI question for ticket ID
CZ_SKIP_TICKET_IDskipTicketIdbooleanfalseWhether to prompt the user to a ticket ID question
CZ_TICKET_ID_REGEXticketIdRegexstring((?<!([A-Z]{1,10})-?)[A-Z]+-\d+)A string represents a valid RegEx to extract ticket ID from the branch
CZ_ALLOW_EMPTY_TICKET_ID_FOR_BRANCHESallowEmptyTicketIdForBranchesstring[][]List of branches to exclude validation for ticket ID
CZ_SUBJECT_QUESTIONsubjectQuestionstringWrite a short, imperative mood description of the change:\nThe CLI question for subject
CZ_SUBJECT_MAX_LENGTHsubjectMaxLengthnumber70Max length of the subject text
CZ_SUBJECT_MIN_LENGTHsubjectMinLengthnumber3Min length of the subject text
CZ_BODY_QUESTIONbodyQuestionstringProvide a longer description of the change:\nThe CLI question for body
CZ_SKIP_BODYskipBodybooleanfalseWhether to prompt the user to a body question
CZ_SKIP_BREAKING_CHANGESskipBreakingChangesbooleantrueWhether to prompt the user to a breaking change question
CZ_ISSUES_QUESTIONissuesQuestionstringList any issue closed (#1, #2, ...):The CLI question for issues
CZ_SKIP_ISSUESskipIssuesbooleantrueWhether to prompt the user to a issues question
CZ_OPEN_AI_TOKENopenAiTokenstring | nullnullWhether to use OpenAI to generate a commit message including commit subject & body. A body will be dismissed if skipBody is enabled.

Examples

Support

For support, email talrofe111@gmail.com or open an issue at cz-vinyl issues.

Contributing

Contributions are always welcome!

See CONTRIBUTING.md for ways to get started.

Please adhere to this project's CODE_OF_CONDUCT.md.

If you want to make PR please first check your code by:

  1. Run pnpm i to install dependencies
  2. Build your source code by running pnpm build
  3. Modify .cz.json file with:
{
	"path": "./dist/index.cjs"
}
  1. Run git cmt and check results of your code

Authors

License

MIT

2.5.1

3 months ago

2.5.0

5 months ago

2.4.1

6 months ago

2.4.0

6 months ago

2.4.3

5 months ago

2.4.2

5 months ago

2.3.0

1 year ago

2.2.0

1 year ago

2.0.3

1 year ago

2.0.2

1 year ago

2.1.0

1 year ago

2.0.1

1 year ago

2.0.0

1 year ago

1.6.2

2 years ago

1.6.1

2 years ago

1.6.0

2 years ago

1.5.0

2 years ago

1.4.1

2 years ago

1.4.0

2 years ago

1.2.0

2 years ago

1.3.2

2 years ago

1.3.1

2 years ago

1.3.0

2 years ago

1.2.1

2 years ago

1.1.0

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago