microsoft / beachball

The Sunniest Semantic Version Bumper
https://microsoft.github.io/beachball
MIT License
728 stars 86 forks source link

Allow us disabling/hiding of usernames from being generated in changelogs #375

Open namrog84 opened 4 years ago

namrog84 commented 4 years ago

We want to have the readmd md and json to not contain usernames or emails. Is there a config for this or can someone add one?

Thanks!

ramourt commented 2 years ago

+1 on this! Curious if this has been added as a feature. One workaround I've found is adding this into the beachball.config.js, but I'm not a 100% if this has any bad side effects.

module.exports = {
  // Other settings
  changelog: {
    customRenderers: {
      renderEntry: (ChangelogEntry) => `- ${ChangelogEntry.comment}`,
    },
  },
};