UNPKG

@techmely/utils

Version:

Collection of helpful JavaScript / TypeScript utils

12 lines (9 loc) 272 B
import { execCommand } from './chunk-OEREUEGT.mjs'; // src/getGitTags.ts async function getGitTags() { const tags = await execCommand("git", ["--no-pager", "tag", "-l", "--sort=creatordate"]).then( (r) => r.split("\n") ); return tags; } export { getGitTags };