mirror of
https://github.com/nodejs/node.git
synced 2025-05-19 06:22:56 +00:00

PR-URL: https://github.com/nodejs/node/pull/37968 Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
42 lines
850 B
JavaScript
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,
|
|
})
|
|
}
|