Skip to content

Commit

Permalink
chore: fix changelogithub config reading by moving to a separate file
Browse files Browse the repository at this point in the history
  • Loading branch information
evermake committed Mar 10, 2024
1 parent 9dc9a66 commit 3136f69
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 34 deletions.
13 changes: 13 additions & 0 deletions changelogithub.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"types": {
"feat": { "title": "🚀 Enhancements", "semver": "minor" },
"fix": { "title": "🩹 Fixes", "semver": "patch" },
"perf": { "title": "⚡️ Performance", "semver": "patch" },
"refactor": { "title": "♻️ Refactors" },
"docs": { "title": "📖 Documentation" },
"build": { "title": "📦 Build" },
"test": { "title": "🧪 Tests" },
"chore": { "title": "🧹 Chore" },
"ci": { "title": "🤖 CI" }
}
}
34 changes: 0 additions & 34 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,39 +30,5 @@
},
"lint-staged": {
"*": "eslint --fix"
},
"changelogithub": {
"types": {
"feat": {
"title": "🚀 Enhancements",
"semver": "minor"
},
"fix": {
"title": "🩹 Fixes",
"semver": "patch"
},
"perf": {
"title": "⚡️ Performance",
"semver": "patch"
},
"refactor": {
"title": "♻️ Refactors"
},
"docs": {
"title": "📖 Documentation"
},
"build": {
"title": "📦 Build"
},
"test": {
"title": "🧪 Tests"
},
"chore": {
"title": "🧹 Chore"
},
"ci": {
"title": "🤖 CI"
}
}
}
}

0 comments on commit 3136f69

Please sign in to comment.