From fc340c68d62378ac4824b3d53f8a1421d0c428b9 Mon Sep 17 00:00:00 2001 From: dhruvdutt Date: Mon, 12 Mar 2018 00:13:37 +0530 Subject: [PATCH 1/2] misc(cz): fix type description --- .cz-config.js | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.cz-config.js b/.cz-config.js index e5a497b2436..5a478474937 100644 --- a/.cz-config.js +++ b/.cz-config.js @@ -16,15 +16,16 @@ module.exports = { allowBreakingChanges: ["ast"], allowCustomScopes: true, scopes: [], + // sort type values in asc types: [ - { value: "feat", name: "feat: A new feature" }, { value: "ast", name: "ast: init, migrate, add, etc" }, - { value: "tests", name: "tests: Tests, jest, binTestCases, etc" }, - { value: "docs", name: "docs: Documentation" }, - { value: "deps", name: "deps: Dependency bumps only" }, + { value: "chore", name: "chore: Updating docs, linting, etc" }, { value: "cli", name: "cli: Core CLI things" }, + { value: "deps", name: "deps: Dependency bumps only" }, + { value: "docs", name: "docs: Documentation" }, + { value: "feat", name: "feat: A new feature" }, + { value: "fix", name: "fix: Bugs, typos, etc" }, { value: "misc", name: "misc: Other formats like tweaks and such" }, - { value: "chore", name: "chore: Updating docs, linting, etc" }, - { value: "fix", name: "bugs, typos, etc" } + { value: "tests", name: "tests: Tests, jest, binTestCases, etc" } ] }; From 73634a68107910ea42420ba3345122c898f6522f Mon Sep 17 00:00:00 2001 From: dhruvdutt Date: Mon, 12 Mar 2018 02:35:48 +0530 Subject: [PATCH 2/2] misc(cz): remove type deps --- .cz-config.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.cz-config.js b/.cz-config.js index 5a478474937..2eb91ccdab0 100644 --- a/.cz-config.js +++ b/.cz-config.js @@ -19,9 +19,8 @@ module.exports = { // sort type values in asc types: [ { value: "ast", name: "ast: init, migrate, add, etc" }, - { value: "chore", name: "chore: Updating docs, linting, etc" }, + { value: "chore", name: "chore: Updating deps, docs, linting, etc" }, { value: "cli", name: "cli: Core CLI things" }, - { value: "deps", name: "deps: Dependency bumps only" }, { value: "docs", name: "docs: Documentation" }, { value: "feat", name: "feat: A new feature" }, { value: "fix", name: "fix: Bugs, typos, etc" },