UNPKG

crx-bump

Version:

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

10 lines (7 loc) 226 B
// @ts-check const fs = require('fs') const path = require('path') const pkgLockPath = path.resolve(`${process.cwd()}`, 'package-lock.json') module.exports = function isExistPkgLock() { return fs.existsSync(pkgLockPath) }