()
| 25 | } |
| 26 | |
| 27 | export function ENOREPOURL() { |
| 28 | return { |
| 29 | message: "The `repositoryUrl` option is required.", |
| 30 | details: `The [repositoryUrl option](${linkify( |
| 31 | "docs/usage/configuration.md#repositoryurl" |
| 32 | )}) cannot be determined from the semantic-release configuration, the \`package.json\` nor the [git origin url](https://git-scm.com/book/en/v2/Git-Basics-Working-with-Remotes). |
| 33 | |
| 34 | Please make sure to add the \`repositoryUrl\` to the [semantic-release configuration] (${linkify( |
| 35 | "docs/usage/configuration.md" |
| 36 | )}).`, |
| 37 | }; |
| 38 | } |
| 39 | |
| 40 | export function EGITNOPERMISSION({ options: { repositoryUrl }, branch: { name } }) { |
| 41 | return { |
nothing calls this directly
no test coverage detected
searching dependent graphs…