conventional-commits
Here are 333 public repositories matching this topic...
-
Updated
Jun 17, 2022 - SCSS
Description
I have pre-commit hooks to enforce LF line endings, this fails on every commitizen commit as it writes CRLF on windows. An option to configure this would be good.
Possible Solution
Hacky, but I have customized my local commitizen and found all instances of open and added newline='\n' to them if they are w opens. And option in the .cz.yaml to specify this would be the o
-
Updated
Jun 21, 2022 - JavaScript
Which will behave like that
let settings = await prettyConfig('rollup', { configFiles })
if (!settings) {
settings = await prettyConfig('rolldown', { configFiles })
}
console.log(settings)instead of above we can hide it to look like that
const settings = await prettyConfig(['rollup', 'rolldown'], { configFiles })
if (!settings) {
console.log('no config fileI noticed that it worked fine if I wrote commit messages like chore(versioning): this is a test but if I wrote it like chore: this is a test, it would not take --skipCommitTypes into account
Originally posted by @zeroregard in jscutlery/semver#374 (comment)
-
Updated
Jun 1, 2022 - JavaScript
-
Updated
Aug 27, 2017 - JavaScript
-
Updated
Jun 20, 2022 - JavaScript
-
Updated
Jun 20, 2022 - JavaScript
-
Updated
Jun 20, 2022 - JavaScript
-
Updated
Jun 21, 2022 - TypeScript
[DOCS] Add man page
-
Updated
May 13, 2021 - JavaScript
-
Updated
Jun 14, 2022 - TypeScript
-
Updated
May 31, 2022 - JavaScript
-
Updated
Jun 9, 2022 - PHP
-
Updated
Jun 6, 2022 - PHP
-
Updated
Jun 18, 2022 - TypeScript
-
Updated
Jun 14, 2022 - Go
-
Updated
Oct 20, 2020 - PHP
We intend to use convco changelog to generate a changelog for a new version / upcoming changes.
The primary intention is to use the generated changelog as the basis for user-facing release notes. We have hidden development-centric sections in the configuration.
However, it could be useful to generate a changelog with these hidden sections too, as insight and a listing for developers.
An a
Maybe it's just a quirk on my machine
-
Updated
Jun 8, 2022 - JavaScript
-
Updated
May 11, 2022 - Shell
-
Updated
Apr 9, 2022 - Go
-
Updated
Mar 11, 2022 - Shell
-
Updated
May 16, 2022 - JavaScript
In order to avoid flaky tests would be cool to sort the resulting .Footers map by key.
Ideally, this could be made an opt-in behavior by implementing an option for the parser so as to do not impact at all performances when footers order doesn't matter.
Improve this page
Add a description, image, and links to the conventional-commits topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the conventional-commits topic, visit your repo's landing page and select "manage topics."


Is your feature request related to a problem? Please describe.
In a monorepo, I that have a folder with the name "www", however, since I am using git-cliff to generate a public-facing changelog, I would wish for this to be displayed as "Application" when generated.
I am using template replace functions to replace "www" with "Application" but would like the ability to change this in the `co