(
targetVersion: string = `v${constants.version}`
)
| 26 | } |
| 27 | |
| 28 | export function getChangelogURL( |
| 29 | targetVersion: string = `v${constants.version}` |
| 30 | ) { |
| 31 | return `${constants.allChangelogs}/${targetVersion.substring(1)}.md`; |
| 32 | } |
| 33 | |
| 34 | const terms = ["v" + constants.version, constants.nickName]; |
| 35 | if (constants.stage != "stable") { |
no outgoing calls
no test coverage detected