Skip to content

Commit

Permalink
chore: Add release-it configuraion to package.json.
Browse files Browse the repository at this point in the history
  • Loading branch information
ericof committed Oct 8, 2021
1 parent 1650e4b commit ceba8ab
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 37 deletions.
37 changes: 0 additions & 37 deletions .release-it.json

This file was deleted.

37 changes: 37 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,42 @@
},
"jest": {
"testEnvironment": "./src/tests/custom-test-env.js"
},
"release-it": {
"npm": {
"publish": true
},
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "refactor",
"section": "Changes"
},
{
"type": "chore",
"section": "Maintenance"
}
]
}
}
}
}
}

0 comments on commit ceba8ab

Please sign in to comment.