Skip to content

Commit

Permalink
Docs (ckeditor5-dev): Use npm instead of yarn for the release process…
Browse files Browse the repository at this point in the history
…. [skip ci]
  • Loading branch information
pomek committed May 22, 2020
1 parent 0160573 commit 8d84fef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ yarn run coverage
### Changelog

1. Fetch all changes and switch to `master`!
2. Execute `yarn run changelog`:
2. Execute `npm run changelog`:
* This task checks what changed in each package and bumps the version accordingly. If nothing changed at all, it won't create a new changelog entry. If changes were irrelevant (e.g. only depedencies) it will create an "internal changes" entry.
* Scan the logs which are printed by the tool in search for errors (incorrect changelog entries). Incorrect entries (e.g. ones without the type) are being ignored. You may need to create entries for them manually. This is done directly in `CHANGELOG.md` (in the root directory). Make sure to verify the proposed version after you modify the changelog.
* When unsure what has really changed in this version of a specific package, use `git diff <hash of previous release> packages/ckeditor5-dev-<name>/`.
Expand All @@ -69,15 +69,15 @@ After generating the changelog, you are able to release the package.
First, you need to bump the version:

```bash
yarn run release:bump-version
npm run release:bump-version
```

You can also use the `--dry-run` option in order to see what this task does.

After bumping the version, you can publish the changes:

```bash
yarn run release:publish
npm run release:publish
```

As in the previous task, the `--dry-run` option is also available.
Expand Down

0 comments on commit 8d84fef

Please sign in to comment.