From 1d4f21081e047c57b7158a179ab59f77dd004e14 Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Thu, 19 Feb 2026 21:59:49 +0100 Subject: [PATCH 1/3] chore(repo): Increase number of parallel running nx tasks --- nx.json | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/nx.json b/nx.json index 0603d445fd7b..2dc24fbc5c08 100644 --- a/nx.json +++ b/nx.json @@ -7,7 +7,12 @@ "{workspaceRoot}/yarn.lock", "{workspaceRoot}/dev-packages/rollup-utils/**" ], - "production": ["default", "!{projectRoot}/test/**/*", "!{projectRoot}/**/*.md", "!{projectRoot}/*.tgz"] + "production": [ + "default", + "!{projectRoot}/test/**/*", + "!{projectRoot}/**/*.md", + "!{projectRoot}/*.tgz" + ] }, "targetDefaults": { "build:dev": { @@ -21,7 +26,12 @@ }, "build:tarball": { "inputs": ["production", "^production"], - "dependsOn": ["build:transpile", "^build:transpile", "build:types", "^build:types"], + "dependsOn": [ + "build:transpile", + "^build:transpile", + "build:types", + "^build:types" + ], "outputs": ["{projectRoot}/*.tgz"], "cache": true }, @@ -54,7 +64,12 @@ "cache": true }, "test:unit": { - "dependsOn": ["build:types", "^build:types", "build:transpile", "^build:transpile"], + "dependsOn": [ + "build:types", + "^build:types", + "build:transpile", + "^build:transpile" + ], "inputs": ["default"], "outputs": ["{projectRoot}/coverage"], "cache": true @@ -64,5 +79,6 @@ "cacheDirectory": ".nxcache", "tui": { "autoExit": true - } + }, + "parallel": 10 } From 09a5209b4caac26c1c51a0fd4a8270fbf7b3bc38 Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Thu, 19 Feb 2026 22:09:52 +0100 Subject: [PATCH 2/3] format --- nx.json | 21 +++------------------ 1 file changed, 3 insertions(+), 18 deletions(-) diff --git a/nx.json b/nx.json index 2dc24fbc5c08..8774146f4563 100644 --- a/nx.json +++ b/nx.json @@ -7,12 +7,7 @@ "{workspaceRoot}/yarn.lock", "{workspaceRoot}/dev-packages/rollup-utils/**" ], - "production": [ - "default", - "!{projectRoot}/test/**/*", - "!{projectRoot}/**/*.md", - "!{projectRoot}/*.tgz" - ] + "production": ["default", "!{projectRoot}/test/**/*", "!{projectRoot}/**/*.md", "!{projectRoot}/*.tgz"] }, "targetDefaults": { "build:dev": { @@ -26,12 +21,7 @@ }, "build:tarball": { "inputs": ["production", "^production"], - "dependsOn": [ - "build:transpile", - "^build:transpile", - "build:types", - "^build:types" - ], + "dependsOn": ["build:transpile", "^build:transpile", "build:types", "^build:types"], "outputs": ["{projectRoot}/*.tgz"], "cache": true }, @@ -64,12 +54,7 @@ "cache": true }, "test:unit": { - "dependsOn": [ - "build:types", - "^build:types", - "build:transpile", - "^build:transpile" - ], + "dependsOn": ["build:types", "^build:types", "build:transpile", "^build:transpile"], "inputs": ["default"], "outputs": ["{projectRoot}/coverage"], "cache": true From 085a0b51fc45603418cedad51f455a115abc66b9 Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Fri, 20 Feb 2026 16:36:59 +0100 Subject: [PATCH 3/3] try 5 --- nx.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nx.json b/nx.json index 8774146f4563..7cd807e089fb 100644 --- a/nx.json +++ b/nx.json @@ -65,5 +65,5 @@ "tui": { "autoExit": true }, - "parallel": 10 + "parallel": 5 }