()
| 92 | const INTERNAL_TYPES = new Set(["build", "chore", "ci", "refactor", "test"]); |
| 93 | |
| 94 | function main() { |
| 95 | const options = parseArgs(process.argv.slice(2)); |
| 96 | const draft = createDraft(options); |
| 97 | outputDraft(options, draft); |
| 98 | } |
| 99 | |
| 100 | function createDraft(options: Options): DraftOutput { |
| 101 | const versionTag = `v${options.version}`; |
no test coverage detected