UNPKG

crx-bump

Version:

Automatically (or with prompts) bump your version number(for Chrome Extension), commit changes, tag, and push to Git

8 lines (6 loc) 167 B
// @ts-check const sh = require('shelljs') module.exports = function isGitRepo() { sh.config.silent = true return !!sh.which('git') && !!sh.find('.git').length }