From 88fe81915b330692385fae8ffb01ecd30e74088f Mon Sep 17 00:00:00 2001 From: DanielHabenicht Date: Tue, 21 Jan 2020 23:37:29 +0100 Subject: [PATCH] docs: fix typo just a little type fist -> first --- docs/recipes/pre-releases.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/recipes/pre-releases.md b/docs/recipes/pre-releases.md index 7bfb1ff4..e8edd447 100644 --- a/docs/recipes/pre-releases.md +++ b/docs/recipes/pre-releases.md @@ -169,7 +169,7 @@ The Git history of the repository is now: We can now start to work on a new future major release, version `4.0.0`, on the `@beta` distribution channel. -To do so we fist need to update the `beta` branch with all the changes from `master` (the commits `fix: a fix`). As `beta` and `master` branches have diverged, this merge might require to resolve conflicts. +To do so we first need to update the `beta` branch with all the changes from `master` (the commits `fix: a fix`). As `beta` and `master` branches have diverged, this merge might require to resolve conflicts. We can now commit our new feature on `beta`. When pushing that commit, **semantic-release** will publish the pre-release version `3.1.0-beta.1` on the dist-tag `@beta`. That allow us to run integration tests by installing our module with `npm install example-module@beta`. Other users installing with `npm install example-module` will still receive the version `3.0.0`.