0.0.0 • Published 4 years ago

conventional-recommended-version-edited v0.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

conventional-recommended-version

NPM version NPM downloads Dependency Status Follow JamieMason on GitHub Follow fold_left on Twitter

NOTE: This package is a fork of JamieMason's repo https://github.com/JamieMason/conventional-recommended-version

  • The only the feature that I have added is the ability to use conventional commits without a scope. Previously these sorts of commits would have no impact on versioning.

Using a conventional-changelog commit history, determine the current version number of your project.

This is done by reading your local git commit history and searching for fixes, features, and breaking changes.

🌩 Installation

npm install -g conventional-recommended-version

👀 Examples

$ conventional-recommended-version
0.5.2
$ conventional-recommended-version --postfix canary
0.5.2-canary

⚖️ Configuration

$ conventional-recommended-version --help

  Usage: conventional-recommended-version [options]

  Options:

    -h, --help                  output usage information
    -V, --version               output the version number
    -d, --directory [location]  path to local git repository
    -p, --postfix [name]        a postfix such as "rc1", "canary" or "beta1"

📝 Supported Conventions

conventional-recommended-version currently only supports the angular conventional-changelog convention as that's the one I use.

Patches are welcome.

🙋🏾‍♀️ Getting Help