Retrieves all Git tags from the repository and filters only those that follow a Semantic Version (SemVer) format.
Internally, it:
A promise that resolves to an array of SemVer-compliant tag names.
await getSemverTags();// ['v1.0.0', 'v1.1.0', '2.0.0'] Copy
await getSemverTags();// ['v1.0.0', 'v1.1.0', '2.0.0']
1.0.0
Retrieves all Git tags from the repository and filters only those that follow a Semantic Version (SemVer) format.
Internally, it: