From 04d755c7835c0c5478755e76c5a99287d6d52935 Mon Sep 17 00:00:00 2001 From: Rahul Chaudhary Date: Mon, 15 Apr 2024 08:01:06 -0400 Subject: [PATCH] chore(build): nx semver rules. - build is not a valid release candidate. Only chore, major, minor, and patch should trigger semver. --- nx.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/nx.json b/nx.json index 5fa9708..d3b5035 100644 --- a/nx.json +++ b/nx.json @@ -10,8 +10,11 @@ }, "conventionalCommits": { "types": { - "build": true, - "chore": false, + "build": false, + "chore": { + "changelog": false, + "semverBump": "none" + }, "ci": false, "docs": false, "feat": false,