A changelog formatter for @changesets/cli that adds links to git commits, issues, and pull requests. Version 0.3.0, actively maintained, with TypeScript types included. It provides a similar output to standard-version or Release Please, allowing customization of link templates for GitHub, Bitbucket, or other services. It requires @changesets/cli v2+ and integrates into the Changesets config without needing the commit option.
npm install changesets-format-with-issue-linksNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Configures the formatter in .changeset/config.json. The changelog option uses two-element array with package name and options. Ensure repoBaseUrl is set.
Update @changesets/cli to ^2.0.0.
Adjust issuePattern to match your commit message format (e.g., '#\\d+' without trailing parenthesis).
Set "commit": false in .changeset/config.json.
Use 'repoBaseUrl' in your config object.
Run `npm install --D changesets-format-with-issue-links` and ensure @changesets/cli is installed.
Add 'repoBaseUrl': 'https://github.com/username/repo' to the changelog options array.
Modify issuePattern to include a capturing group, e.g., '#(\\d+)'.