diff --git a/changelogithub.config.json b/changelogithub.config.json new file mode 100644 index 0000000..eeaa1fd --- /dev/null +++ b/changelogithub.config.json @@ -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" } + } +} diff --git a/package.json b/package.json index 0a2186c..27a7cb3 100644 --- a/package.json +++ b/package.json @@ -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" - } - } } }