Skip to content

Commit

Permalink
feat: remove commitArgs
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Sep 18, 2024
1 parent 6865661 commit 57c9141
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions projects/release-it-config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ const changelog = `npx auto-changelog -c ${path}/index.json --handlebars-setup $
module.exports = {
git: {
addUntrackedFiles: true,
commitArgs: ['-S'],
commitMessage: 'chore(release): v${version}',
pushArgs: ['--follow-tags'],
requireBranch: 'main',
Expand All @@ -29,7 +28,7 @@ module.exports = {
'after:bump': [
'git tag v${version}',
'echo "new version is v${version}"',
`${changelog} --template ${path}/templates/changelog.hbs -p`,
`${changelog} --template ${path}/templates/changelog.hbs -p > /dev/null`,
'npx prettier CHANGELOG.md --write || echo "Missing prettier step"',
'git add CHANGELOG.md',
'npm run bump || echo "Missing bump step"',
Expand Down

0 comments on commit 57c9141

Please sign in to comment.