From 8178dba6745cd68a53212eebcf1820c22e585cd5 Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Tue, 8 Apr 2025 09:19:23 +0200 Subject: [PATCH] build: set MAX_CIRCULAR_DEPENDENCIES to 6 --- src/Umbraco.Web.UI.Client/devops/circular/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/devops/circular/index.js b/src/Umbraco.Web.UI.Client/devops/circular/index.js index 31223f1098..a83663d67f 100644 --- a/src/Umbraco.Web.UI.Client/devops/circular/index.js +++ b/src/Umbraco.Web.UI.Client/devops/circular/index.js @@ -52,7 +52,7 @@ if (circular.length) { */ // TODO: Remove this check and set an exit with argument 1 when we have fixed all circular dependencies. - const MAX_CIRCULAR_DEPENDENCIES = 7; + const MAX_CIRCULAR_DEPENDENCIES = 6; if (circular.length > MAX_CIRCULAR_DEPENDENCIES) { process.exit(1); } else if (circular.length < MAX_CIRCULAR_DEPENDENCIES) {