Skip to content

Commit

Permalink
chore: Add package.json and release-it config
Browse files Browse the repository at this point in the history
  • Loading branch information
danidee10 committed Feb 9, 2024
1 parent 57b4234 commit 35dafe5
Show file tree
Hide file tree
Showing 3 changed files with 10,482 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .release-it.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"npm": {
"publish": false
},
"git": {
"commitMessage": "chore: Release ${version}"
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": false,
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "chore",
"section": "Chore and depedencies"
},
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
}
]
}
},
"@release-it/bumper": {
"out": [
"package.json"
]
}
}
}
Loading

0 comments on commit 35dafe5

Please sign in to comment.