Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@ianwalter/release

ianwalter1.1kSEE LICENSE IN LICENSE5.0.2

CLI workflow for releasing JavaScript packages

release, publish, yarn, semver

readme

@ianwalter/release

CLI workflow for releasing JavaScript packages

npm page CI

Screenshot

About

HEAVILY inspired by np but with the following features:

  • Better support for yarn
  • A release branch workflow to help with GitHub master branch protections
  • Support for multiple (and external) registries

Workflow

  • <input checked="" disabled="" type="checkbox"> Check and fail if there are uncommited changes in the working directory
  • <input checked="" disabled="" type="checkbox"> Check and fail if upstream has new commits
  • <input checked="" disabled="" type="checkbox"> Display commits and prompt for a new semantic version if one wasn't
    specified as the first arugment
  • <input checked="" disabled="" type="checkbox"> Check and fail if version tag already exists locally or on remote
  • <input checked="" disabled="" type="checkbox"> Re-install dependencies
  • <input checked="" disabled="" type="checkbox"> Run linting if there's a lint script
  • <input checked="" disabled="" type="checkbox"> Run tests if there's a test script
  • <input checked="" disabled="" type="checkbox"> If --branch is specified, create a release branch, push it, link to a
    new PR, and prompt for a confirmation to publish
  • <input checked="" disabled="" type="checkbox"> Update the version in package.json and commit the version bump
  • <input checked="" disabled="" type="checkbox"> Create a tag and push it up
  • <input checked="" disabled="" type="checkbox"> Publish the package and display a link to create a new GitHub release with
    the tag from the previous step
  • <input checked="" disabled="" type="checkbox"> If --yolo is specified, most of checks are skipped and the last 3 steps
    are executed

Installation

yarn add @ianwalter/release --dev

CLI Usage

If you've installed release as a develoment dependency you can run it like:

yarn release [version]

The version number is optional. If not specified, you will be prompted for one.

Multiple Registries

You can specify that your package be published to multiple registries by configuring release in your package.json, for example:

{
  "release": {
    "registries": [
      "npm",
      "github",
      "https://some.other.registry.com/"
    ]
  }
}

You can specify npm for npm and github for GitHub Package Registry. Otherwise, specify the registry URL.

Release Branch Workflow

GitHub branch protections can make it difficult to commit version updates to your package.json before publishing. In order to get around this, you can specify the --branch flag and release will automatically create a release branch, commit the version update, and link to the pull request creation page on GitHub. It will then prompt you to confirm before publishing (unless you added the --yolo flag) so that you can get the PR reviewed. You can also supply a branch name to --branch if you don't want to use the generated one.

License

Hippocratic License - See LICENSE

 

Created by Ian Walter