constants.js 425 B

123456789101112131415161718
  1. "use strict";
  2. // changelogs are always written with LF line endings
  3. const EOL = "\n";
  4. exports.EOL = EOL;
  5. exports.BLANK_LINE = EOL + EOL;
  6. exports.COMMIT_GUIDELINE =
  7. "See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.";
  8. exports.CHANGELOG_HEADER = [
  9. "# Change Log",
  10. "",
  11. "All notable changes to this project will be documented in this file.",
  12. exports.COMMIT_GUIDELINE,
  13. ].join(EOL);