node/deps/npm/node_modules/libnpmversion/lib/index.js
npm-robot aaa4306a81
deps: upgrade npm to 8.3.1
PR-URL: https://github.com/nodejs/node/pull/41503
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ruy Adorno <ruyadorno@github.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
2022-01-14 17:42:48 +00:00

42 lines
850 B
JavaScript

const readJson = require('./read-json.js')
const version = require('./version.js')
const proclog = require('./proc-log.js')
module.exports = async (newversion, opts = {}) => {
const {
path = process.cwd(),
allowSameVersion = false,
tagVersionPrefix = 'v',
commitHooks = true,
gitTagVersion = true,
signGitCommit = false,
signGitTag = false,
force = false,
ignoreScripts = false,
scriptShell = undefined,
preid = null,
log = proclog,
message = 'v%s',
} = opts
const pkg = opts.pkg || await readJson(path + '/package.json')
return version(newversion, {
path,
cwd: path,
allowSameVersion,
tagVersionPrefix,
commitHooks,
gitTagVersion,
signGitCommit,
signGitTag,
force,
ignoreScripts,
scriptShell,
preid,
pkg,
log,
message,
})
}