beachball icon indicating copy to clipboard operation
beachball copied to clipboard

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

Open namrog84 opened this issue 5 years ago • 1 comments

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!

namrog84 avatar Aug 05 '20 20:08 namrog84

+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}`,
    },
  },
};

ramourt avatar Feb 18 '22 22:02 ramourt