Skip to content

Commit

Permalink
chore: (DSO-2004) Move js config to package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
javiercm1410 committed Jul 15, 2024
1 parent 8a0ff3c commit b614c76
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 72 deletions.
71 changes: 0 additions & 71 deletions .release-it.json

This file was deleted.

1 change: 0 additions & 1 deletion commitlint.config.js

This file was deleted.

77 changes: 77 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,82 @@
"commitlint": "^19.2.1",
"husky": "^9.0.11",
"release-it": "^17.3.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"defaultIgnores": true
},
"release-it": {
"github": {
"release": false,
"releaseName": "v${version}"
},
"git": {
"commitMessage": "chore: release v${version}",
"tagMatch": "v[0-9]*\\.[0-9]*\\.[0-9]*",
"tagName": "v${version}",
"getLatestTagFromAllRefs": true,
"tagExclude": "*[-]*",
"push": true,
"release": true,
"pushArgs": ["--no-verify", "--follow-tags", "--force"],
"commitArgs": ["--no-verify"]
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Miscellaneous"
},
{
"type": "docs",
"section": "Miscellaneous"
},
{
"type": "style",
"section": "Miscellaneous"
},
{
"type": "refactor",
"section": "Miscellaneous"
},
{
"type": "perf",
"section": "Miscellaneous"
},
{
"type": "test",
"section": "Miscellaneous"
},
{
"type": "build",
"section": "Miscellaneous"
},
{
"type": "revert",
"section": "Miscellaneous"
},
{
"type": "ci",
"section": "Miscellaneous"
}
]
},
"infile": "CHANGELOG.md"
}
}
}
}

0 comments on commit b614c76

Please sign in to comment.