GithubHelp home page GithubHelp logo

jamesgeorge007 / shipjs Goto Github PK

View Code? Open in Web Editor NEW

This project forked from algolia/shipjs

0.0 2.0 0.0 6.3 MB

Take control of what is going to be your next release.

License: MIT License

JavaScript 96.90% Shell 3.10%

shipjs's Introduction

πŸ›³ Ship.js

npm CircleCI NPM All Contributors

Take control of what is going to be your next release.

Why πŸ€·πŸ»β€

Coding is fun, debugging and testing are okay, but releasing is NOT.

When releasing, you go through something like the following:

  • Update the version in package.json
  • Update the changelog
  • Actually release it (e.g. yarn build && yarn publish)
  • Create a git tag
  • Create a release on GitHub

What could go wrong?

  • You might make mistakes during the release.
    • Environments are different across your team members.
    • You're releasing alone because the whole process happens on your local machine.
    • It's not your everyday-job. Mistakes can happen.
  • You are blocked and cannot do anything else until it's done.
    • Even if you have a release script, you need to watch until the script finishes well.
    • You don't want to switch to another feature branch and work there until the script finishes.

How to solve them❓

In Ship.js, the release process consists of three parts.

Part 1. Preparation (shipjs prepare)

Preview

Run shipjs prepare and it will briefly do the following:

  • Figure out next version.
  • Update the version and changelog.
  • Create a pull request.

It takes less than a couple of minutes.

Part 2. Review

  • Review the PR by yourself, or with your colleagues.
  • Add more commits to the PR if you want.
  • You can hold the release, build from the staging branch and test it manually.
  • If you want to cancel the release, just close the PR and delete the staging branch.

When you think it's ready to release, merge the PR.

Part 3. Trigger a release (shipjs trigger)

Run shipjs trigger and it will briefly do the following:

  • Run a final test (unit, e2e, etc).
  • Release it to NPM (or elsewhere as you configure it).
  • Create a git tag for the version.
  • Create a release for the tag on GitHub.

You can manually run shipjs trigger on the base branch after the PR is merged.

However you can also configure your CI service(e.g. CircleCI) to do this for you. It means the longest process is on the CI service asynchronously, not occupying your working environment.

A little deeper look ⁉️

Let's assume the following situation:

  • Current branch: master
  • Currently released version: 1.0.0
  • Next version: 1.0.1 (because there are only commits like chore:, fix:, ...)

Part 1. Preparation (shipjs prepare)

On your terminal, run shipjs prepare and it will briefly do the following:

  • git checkout -b releases/v1.0.1
  • Update the version in package.json.
  • Update the changelog.
  • git commit -m "chore: release v1.0.1
  • Create a PR from releases/v1.0.1 to master.

You can run shipjs prepare --dry-run just to see what will be executed without actual execution.

Part 2. Review

You will review and merge this PR.

You can add more commits to this PR if needed.

According to your merge strategy, you might either Squash and merge or Merge pull request.

For more information, please refer to the mergeStrategy section of the guide.

Part 3. Trigger a release (shipjs trigger)

On your terminal, git pull on master branch. And run shipjs trigger. It will check the following conditions whether it should proceed releasing or not.

  • if it's master branch now
  • if the latest commit message is like chore: releases v1.0.1 (#xx)

If the conditions are met, shipjs trigger will briefly do the following:

  • Send a Slack message to notify the beginning of the release(If configured).
  • Run test, build and release it.
  • git tag v1.0.1.
  • Push them to git remote.
  • hub release create -m <changelog> v1.0.1
  • Notify at Slack.

You can run shipjs trigger --dry-run just to see what will be executed without actual execution.

And you can configure your CI service to run the Part 3 on behalf of you. What you need to do is just to make it run shipjs trigger every time there is a new commit. It's okay to do so because shipjs trigger triggers release only when the conditions are met. If not, it skips.

Installation

Running the following command will guide you to set it up interactively.

npx shipjs setup

Otherwise, you can still do it manually.

npm install --save-dev shipjs

or

yarn add -D shipjs

Add the following to the scripts section in your package.json.

"release:prepare": "shipjs prepare",
"release:trigger": "shipjs trigger",

Do you want to set it up now? Then, let's move on to the GUIDE.md.

How is it different from semantic-release?

semantic-release is a tool for fully automated version management and package publishing.

Ship.js gives you more control over the release process. Ship.js automatically creates a PR before publishing every release, so that you can:

  • Confirm the next version is correct.
  • Confirm which commits are going to be released and discuss them with colleagues.
  • Edit the automatically generated changelog for clarity & readability.
  • Run any automated tests on the package release candidate.
  • Build a release candidate automatically (with Pika CI).

Contributing

You can create an issue for bug, feature request or your opinion.

And we also appreciate your PRs. The detailed contribution guide is coming soon.

Getting Started

Let's move on to the GUIDE.md.

Contributors ✨

Thanks goes to these wonderful people (emoji key):

Eunjae Lee
Eunjae Lee

πŸ’» πŸ“–
Fred K. Schott
Fred K. Schott

πŸ“–
Yasuaki Uechi
Yasuaki Uechi

πŸ’» πŸ“–
Ivakhnenko Dmitry
Ivakhnenko Dmitry

πŸ’»
James George
James George

πŸ’»

This project follows the all-contributors specification. Contributions of any kind welcome!

shipjs's People

Contributors

fredkschott avatar jamesgeorge007 avatar jeetiss avatar kazupon avatar renovate[bot] avatar uetchy avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.