UNPKG

commiter-cli

Version:

A CLI tool to standardize and translate Git commit messages

10 lines (9 loc) 232 B
export default { name: 'version', description: 'Show CLI version', aliases:[], run: async ({ json }) => { const project = json.load('../package.json'); console.log(project.version); } };