Work with releases with ease
For the changelog, see CHANGELOG.md.
To install the rlx
with the npm, run:
npm i -D @napalmpapalam/rlx
or with the yarn:
yarn add -D @napalmpapalam/rlx
Before building the rlx
from the source, make sure you have the Rust installed on your machine.
To build the rlx
from the source, run:
git clone https://github.com/napalmpapalam/rlx.git
cd rlx
cargo build --release
cp ./target/release/rlx /usr/local/bin/rlx # or any other directory in the PATH
There are a few ways to configure the rlx
:
.rlx.yml
file in the root of the project, names of the options equal to the CLI flags but in the snake case (e.g.tag-prefix
->tag_prefix
)- Global flags which will be passed to the
rlx
command - Environment variables with the
RLX_
prefix
Options:
Option name | Option alias | Environment variable | Description |
---|---|---|---|
workspace-path |
-w |
RLX_WORKSPACE_PATH |
Path to the workspace directory with the packages directories if it's mono-repo (eg. rlx --workspace-path ./packages ). Used to infer the packages path for validating package.json version. If not provided, the current directory will be used. |
changelog-path |
-cp |
RLX_CHANGELOG_PATH |
Path to the changelog file (eg. rlx --changelog-path ./CHANGELOG.md ). If not provided, the CHANGELOG.md file in the root of the project will be used. |
debug |
❌ | RLX_DEBUG |
Enable debug mode, which will print debug logs. |
remote-url |
-url |
RLX_REMOTE_URL |
The Git Remote URL of the repository, used to generate compare links in the changelog. If not provided it will be inferred from the git configuration. |
tag-prefix |
-t |
RLX_TAG_PREFIX |
The tag prefix to use (e.g. rlx --tag-prefix v ), used to generate compare links in the changelog. If not provided it will empty. |
head |
❌ | RLX_HEAD |
The head to use (by default HEAD , e.g. rlx --head master ), used to generate compare links in the changelog |
rlx
CLI provides a set of commands to work with the releases, which you can use to automate the release process.
Release Sanity Check. Check that a release is sane (package.json
, CHANGELOG.md
and semantic versioning are valid for the release).
Usage:
npx rlx rsc [OPTIONS] <VERSION>
Arguments:
<VERSION>
- The release version to check, if not provided, the not pushed git tag will be used. If no git tag is found, the check will be skipped
The command will check the following:
- The provided version is a valid semver version
- The
package.json
version is equal to the provided version - The
CHANGELOG.md
contains the provided version release notes and the release date is equal to the current date, and the release compares link is valid\exists
Example:
npx rlx rsc 1.0.0
Version commands, used to manipulate the version in the package.json
file.
Set the provided version to the package.json
file. The --workspace-path
option can be used as
well to apply the version to the mono-repo packages.
Usage:
npx rlx version apply [OPTIONS] <VERSION>
Arguments:
<VERSION>
- The version to apply to thepackage.json
file
Example:
npx rlx version apply 1.0.0
Changelog commands, used to parse and manipulate changelog.
Generate a new changelog file.
Usage:
npx rlx changelog new [OPTIONS]
Example:
npx rlx changelog new
Get the release changelog for the provided version.
Usage:
npx rlx changelog get [OPTIONS] <VERSION>
Arguments:
<VERSION>
- The release version to get the changelog for, alternatively, you can uselatest
to get the latest release changelog
Example:
npx rlx changelog get 1.0.0
Format the changelog file, making sure it's valid and consistent.
Usage:
npx rlx changelog format [OPTIONS]
Validate the changelog file, making sure it's valid and consistent.
Usage:
npx rlx changelog validate [OPTIONS]
Make a release from [Unreleased]
section
Usage:
npx rlx changelog release [OPTIONS] <VERSION>
Arguments:
<VERSION>
- The release version to make the release for.
Example:
npx rlx changelog release 1.0.0
Display help for the rlx
CLI
Usage:
npx rlx help
It will display the help message with the available commands and options such as:
Usage: rlx [OPTIONS] <COMMAND>
Commands:
rsc Release Sanity Check. Check that a release is sane (`package.json`, `CHANGELOG.md` and semantic versioning are valid for the release)
changelog Changelog commands, used to parse and manipulate changelog
version Version commands, used to manipulate versions
help Print this message or the help of the given subcommand(s)
Options:
-w, --workspace-path <WORKSPACE_PATH>
Path to the workspace directory with the packages directories if it's mono-repo (eg. "./packages"). Used to infer the package(s) path for validating package.json version.
If not provided, the current directory will be used.
Can be set via `RLX_WORKSPACE_PATH` environment variable or `workspace_path` config option in the `.rlx.yml` file.
--debug
Enable debug mode, which will print debug logs.
Can be set via `RLX_DEBUG` environment variable or `debug` config option in the `.rlx.yml` file.
--changelog-path <CHANGELOG_PATH>
The path to the changelog file, defaults to `CHANGELOG.md`
Can be set via `RLX_CHANGELOG_PATH` environment variable or `changelog_path` config option in the `.rlx.yml` file.
--remote-url <REMOTE_URL>
The Git Remote URL of the repository, used to generate compare links in the changelog.
If not provided it will be inferred from the git configuration.
Can be set via `RLX_REMOTE_URL` environment variable or `remote_url` config option in the `.rlx.yml` file.
-t, --tag-prefix <TAG_PREFIX>
The tag prefix to use (e.g. `v`), used to generate compare links in the changelog.
If not provided it will empty.
Can be set via `RLX_TAG_PREFIX` environment variable or `tag_prefix` config option in the `.rlx.yml` file.
--head <HEAD>
The head to use (by default `HEAD`), used to generate compare links in the changelog
Can be set via `RLX_HEAD` environment variable or `head` config option in the `.rlx.yml` file.
-h, --help
Print help (see a summary with '-h')
First off, thanks for taking the time to contribute! Now, take a moment to be sure your contributions make sense to everyone else.
Found a problem? Want a new feature? First of all, see if your issue or idea has already been reported. If don't, just open a new clear and descriptive issue.
Pull requests are the greatest contributions, so be sure they are focused in scope and avoid unrelated commits.
- Fork it!
- Clone your fork:
git clone https://github.com/<your-username>/rlx
- Navigate to the newly cloned directory:
cd rlx
- Create a new branch for the new feature:
git checkout -b feature/my-new-feature
- Make your changes.
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin feature/my-new-feature
- Submit a pull request with full remarks documenting your changes.
MIT License © Semen Loktionov