Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
cz-customizable
Advanced tools
Commitizen customizable adapter following the conventional-changelog format.
The customizable Commitizen plugin to help achieve consistent commit messages like the AngularJS team.
Suitable for large teams working with multiple projects with their own commit scopes. When you specify the scopes in your .cz-config.js
, cz-customizable
allows you to select the pre-defined scopes. No more spelling mistakes embarrassing you when generating the changelog file.
install commitizen in case you don't have it: npm install -g commitizen
. Make sure you have the latest version of commitizen installed globally.
install the cz-customizable: npm install cz-customizable --save-dev
configure commitizen
to use cz-customizable
as plugin. Add those lines to your package.json
:
...
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
Changes to your git repository, file package.json
.
cz-customizable
will first look for a file called .cz-config.js
package.json
:
...
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "config/path/to/my/config.js"
}
}
Note: option one allows you to have your config away from root directory. It also gives you a change to define any name to your cz-config.js
.
Standalne - No Changes to your git repository*. This is suitable when your team is not ready to roll cz-customizable
across all teams but you still would like to use it for your own commits, no matter the project.
Steps:
.cz-config.js
in your git repository root (*Asumptions: you do a global git ignore on ~/.gitignore_global
for .cz-config.js
). Or;.cz-config.js
your home directory.>v5.6.x
.czrc
: echo '{ "path": "cz-customizable" }' > ~/.czrc
npx git-cz
or git cz
.Notes:
.cz-config.js
file to your git.From now on, instead of git commit
you type git cz
and let the tool do the work for you.
Hopefully this will help you to have consistent commit messages and have a fully automated deployment without any human intervention.
Here are the options you can set in your .cz-config.js
:
subjectLimit: {number, default 100}: This is the commit first line. Example: feat: this is a new feature
or feat(scopePayments): this is a new feature
subjectSeparator: {string, default ': '}: This is the subject separator. Example: feat: this is a new feature
typePrefix: {string, default ''}: This is the commit type prefix. Example: config: { typePrefix: '[' }
, result: [feat: this is a new feature
typeSuffix: {string, default ''}: This is the commit type suffix. Example: config: { typePrefix: '[', typeSuffix: ']', subjectSeparator: ' ' }
, result: [feat] this is a new feature
scopes: {Array of Strings}: Specify the scopes for your particular project. Eg.: for some banking system: ["acccounts", "payments"]. For another travelling application: ["bookings", "search", "profile"]
scopeOverrides: {Object where key contains a Array of String}: Use this when you want to override scopes for a specific commit type. Example bellow specify scopes when type is fix
:
scopeOverrides: {
fix: [
{name: 'merge'},
{name: 'style'},
{name: 'e2eTest'},
{name: 'unitTest'}
]
}
allowCustomScopes: {boolean, default false}: adds the option custom
to scope selection so you can still type a scope if you need.
allowBreakingChanges: {Array of Strings: default none}. List of commit types you would like to the question breaking change
prompted. Eg.: ['feat', 'fix'].
skipQuestions: {Array of Strings: default none}. List of questions you want to skip. Eg.: ['body', 'footer'].
appendBranchNameToCommitMessage: If you use cz-customizable
with cz-customizable-ghooks
, you can get the branch name automatically appended to the commit message. This is done by a commit hook on cz-customizable-ghooks
. This option has been added on cz-customizable-ghooks
, v1.3.0. Default value is true
.
ticketNumberPrefix: {string, default 'ISSUES CLOSED:'}: Set custom prefix for footer ticker number.
breakingPrefix: {string, default 'BREAKING CHANGE:'}: Set a custom prefix for the breaking change block in commit messages.
footerPrefix: {string, default 'ISSUES CLOSED:'}: Set a custom prefix for the footer block in commit messages. Set to empty string to remove prefix.
backticks
If you wish to have backticks in your content, for example "feat: `string`", the commit preview will be "feat: \`string\`".
Don't worry because on your git log
will be "feat: `string`" as desired.
multiline contents on the body of the message
Body is the only place where you can use a pipe
to break lines.
E.g.: you type this: my items are:| - item01| - item 02
, which will become:
my items are:
- item01
- item 02
README.md
and index.d.ts
.Leonardo Correa
FAQs
Commitizen customizable adapter following the conventional-changelog format.
The npm package cz-customizable receives a total of 68,993 weekly downloads. As such, cz-customizable popularity was classified as popular.
We found that cz-customizable demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.