Skip to content

Instantly share code, notes, and snippets.

@christianvuerings
Last active August 3, 2017 14:35
Show Gist options
  • Select an option

  • Save christianvuerings/5224e7d375621594c46bf1c9e0494416 to your computer and use it in GitHub Desktop.

Select an option

Save christianvuerings/5224e7d375621594c46bf1c9e0494416 to your computer and use it in GitHub Desktop.
Gestalt release notes generation
// Gestalt release notes generation
// 1. Go to https://github.com/pinterest/gestalt/commits/master
// 2. Run the script below
[...document.querySelectorAll('.commit-title')]
.map(commitTitle => `* ${commitTitle.innerText.replace(' …', '')}`)
.join("\n");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment