UNPKG

211 BPlain TextView Raw
1/* eslint-disable import/prefer-default-export */
2import cmd from './cmd';
3
4export async function getLastTag(): Promise<string> {
5 return await cmd('git describe --tags `git rev-list --tags --max-count=1`');
6}