From 3136f692cf2d6bf89c7790e554dcad812bdfd54a Mon Sep 17 00:00:00 2001 From: evermake Date: Sun, 10 Mar 2024 14:39:42 +0300 Subject: [PATCH] chore: fix `changelogithub` config reading by moving to a separate file --- changelogithub.config.json | 13 +++++++++++++ package.json | 34 ---------------------------------- 2 files changed, 13 insertions(+), 34 deletions(-) create mode 100644 changelogithub.config.json 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" - } - } } }