HEX
Server: Apache/2.4.65 (Debian)
System: Linux kubikelcreative 5.10.0-35-amd64 #1 SMP Debian 5.10.237-1 (2025-05-19) x86_64
User: www-data (33)
PHP: 8.4.13
Disabled: NONE
Upload Files
File: //usr/share/npm/node_modules/libnpmversion/lib/commit.js
const git = require('@npmcli/git')

module.exports = (version, opts) => {
  const {commitHooks, allowSameVersion, signGitCommit, message} = opts
  const args = ['commit']
  if (commitHooks === false)
    args.push('-n')
  if (allowSameVersion)
    args.push('--allow-empty')
  if (signGitCommit)
    args.push('-S')
  args.push('-m')
  return git.spawn([...args, message.replace(/%s/g, version)], opts)
}