Skip to content
Danny Koppenhagen edited this page Dec 11, 2019 · 4 revisions
Why are the links in my CHANGELOG.md file not generated correctly?

This issue can appear if you don't have the either the `repository` or the `bugs` field configured in your `package.json` file. Check out conventional-changelog-config-spec (v2.1.0) as well as the NPM reference for this fields for further information.

How can a create a pre-release?

You can use one of the following commands:


npm run release -- --first-release    # create the initial release and create the `CHANGELOG.md`
npm run release -- --prerelease       # create a pre-release instead of a regular one
npm run release -- --prerelease alpha # cut a new alpha release version
Clone this wiki locally