feat: initial notes

This commit is contained in:
rzmk 2023-11-22 20:16:43 -05:00
commit abacf061c1
No known key found for this signature in database
9 changed files with 3546 additions and 0 deletions

25
.release-it.json Normal file
View file

@ -0,0 +1,25 @@
{
"git": {
"requireBranch": "main",
"commitMessage": "chore: release v${version}"
},
"hooks": {
"after:bump": "pnpx auto-changelog --commit-limit false --template keepachangelog"
},
"github": {
"release": true,
"releaseName": "v${version}"
},
"npm": {
"publish": false,
"ignoreVersion": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "angular"
},
"infile": "CHANGELOG.md"
}
}
}