(filePath: string)
| 463 | } |
| 464 | |
| 465 | export function validateIncludeLocal (filePath: string) { |
| 466 | assert(!filePath.startsWith("./"), `\`${filePath}\` for include:local is invalid. Gitlab does not support relative path (ie. cannot start with \`./\`).`); |
| 467 | assert(!filePath.includes(".."), `\`${filePath}\` for include:local is invalid. Gitlab does not support directory traversal.`); |
| 468 | } |
| 469 | |
| 470 | export function resolveSemanticVersionRange (range: string, gitTags: string[]) { |
| 471 | /** sorted list of tags thats compliant to semantic version where index 0 is the latest */ |
no outgoing calls
no test coverage detected