From 0bb53389c7e9f2f9dc44bb5e4732b9ede42fd722 Mon Sep 17 00:00:00 2001 From: Max Kless Date: Fri, 30 Aug 2024 13:01:42 +0300 Subject: [PATCH] fix(core): add parallelism to target defaults schema --- packages/nx/schemas/nx-schema.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/nx/schemas/nx-schema.json b/packages/nx/schemas/nx-schema.json index 49a15ae93a79b..23998fc4d10fe 100644 --- a/packages/nx/schemas/nx-schema.json +++ b/packages/nx/schemas/nx-schema.json @@ -506,6 +506,11 @@ "type": "object" } }, + "parallelism": { + "type": "boolean", + "default": true, + "description": "Whether this target can be run in parallel with other tasks" + }, "inputs": { "$ref": "#/definitions/inputs" },