@pragmatics/conventional-changelog-preset
v1.1.1
Published
conventional-changelog pragmatics preset
Downloads
107
Maintainers
Readme
@pragmatics/conventional-changelog-preset
Conventional changelog preset based on Angular commit message guidelines.
As opposed to the Angular preset, when bumping a version, this preset will always generate the appropriate changelog entries.
Summary
Getting started
Installation
yarn add @pragmatics/conventional-changelog-preset -D
Usage
Use the Conventional Changelog CLI Quick Start with the -p conventionalcommits
option.
Lerna
When using with lerna version Set the --changelog-preset
flag.
$ lerna version --conventional-commits --changelog-preset @pragmatics/preset
When using lerna.json
, set the following:
{
"command": {
"version": {
"conventionalCommits": true,
"changelogPreset": "@pragmatics/preset"
}
}
}
Lerna automatically evaluates & prepends conventional-changelog-
to the preset, so node module resolution resolves to the correct package.
Commit messages
This preset follows message formats as described in commitlint/config-conventional
Supported Commit Types
feat
: A new featurefix
: A bug fixperf
: A code change that improves performancerevert
: Reverts a previous commitdocs
: Documentation only changesstyle
: Changes that do not affect the meaning of the code (like linter changes)refactor
: A code change that neither fixes a bug nor adds a featuretest
: Adding missing tests or correcting existing testsbuild
: Changes that affect the build system or external dependenciesci
: Changes to our CI configuration files and scriptschore
: Other changes that don't modify source or test files
Built With
- Webstorm - for development
- Github - for versioning and deployment
- Contributor Covenant - for the Code of Conduct
- Creative Commons - to choose the license
Contributing
Please read CONTRIBUTING.md for details on our the process for submitting issues and pull requests to us. This repository has a code of conduct, we will remove things that do not respect it.
Versioning
We use SemVer for versioning. For the available versions, see the tags on this repository.
Authors
See the list of contributors who participated in this project.
License
This project is licensed under the ISC License.
Acknowledgements
The following guidelines, methodologies and architectures have been used as inspiration for this package: