From 648ccf19345f9cb5b82af7ee05ed41b31594598b Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Sun, 16 Oct 2022 11:56:37 +0200 Subject: [PATCH] fix: consider docs and refactor as semver patch for bump --- src/config.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/config.ts b/src/config.ts index a66c3b1..cff9ca1 100644 --- a/src/config.ts +++ b/src/config.ts @@ -19,13 +19,13 @@ const ConfigDefaults: ChangelogConfig = { feat: { title: '🚀 Enhancements', semver: 'minor' }, perf: { title: '🔥 Performance', semver: 'patch' }, fix: { title: '🩹 Fixes', semver: 'patch' }, - refactor: { title: '💅 Refactors' }, - examples: { title: '🏀 Examples' }, - docs: { title: '📖 Documentation' }, - chore: { title: '🏡 Chore' }, + refactor: { title: '💅 Refactors', semver: 'patch' }, + docs: { title: '📖 Documentation', semver: 'patch' }, build: { title: '📦 Build', semver: 'patch' }, - test: { title: '✅ Tests' }, types: { title: '🌊 Types', semver: 'patch' }, + chore: { title: '🏡 Chore' }, + examples: { title: '🏀 Examples' }, + test: { title: '✅ Tests' }, style: { title: '🎨 Styles' }, ci: { title: '🤖 CI' } },