Skip to content

Commit

Permalink
(docs) Clarify guidance in release step in README
Browse files Browse the repository at this point in the history
  • Loading branch information
denniskigen committed May 15, 2024
1 parent 8180b25 commit 73287d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,13 +142,13 @@ To cut a new release, start by creating a release branch:
git checkout -b chore/release-vX.Y.Z
```

Then update the version in the `package.json` file:
Then update the version in the root-level `package.json` file:

```sh
yarn version --new-version <major|minor|patch> --no-git-tag-version
```

Note that this command only updates the version in the root-level `package.json` file. You must ensure to bump the version in the `package.json` file in the `projects/ngx-formentry` directory as well. To do so, run:
Note that this command only updates the version of the Angular wrapper app that consumes the library. To bump the library version, you must bump the version in the `package.json` file in the `projects/ngx-formentry` directory as well. To do so, run:

```sh
cd projects/ngx-formentry
Expand Down

0 comments on commit 73287d3

Please sign in to comment.