We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We're using standard version and CZ together with this adapter.
We already have a .versionrc with our customized types defined inside of it.
I just wish the adapter could respect that if there's any at the root of the project, so we don't have to maintain and sync both over time.
I can add the functionality if it is desired.
cz-conventional-changelog types field example:
cz-conventional-changelog
types
"types": { "feat": { "description": "Features" }, "fix": { "description": "Bug Fixes" }, "style": { "description": "UI Changes" } }
standard-version types field example:
standard-version
"types": [ { "type": "feat", "section": "Features" }, { "type": "fix", "section": "Bug Fixes" }, { "type": "style", "section": "UI Changes" } ]
We just need to check for the file and add a simple transformer.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We're using standard version and CZ together with this adapter.
We already have a .versionrc with our customized types defined inside of it.
I just wish the adapter could respect that if there's any at the root of the project, so we don't have to maintain and sync both over time.
cz-conventional-changelog
types
field example:standard-version
types
field example:We just need to check for the file and add a simple transformer.
The text was updated successfully, but these errors were encountered: