From dfcd979e9140fcb113e5d6561becb3b1c9447022 Mon Sep 17 00:00:00 2001 From: Tine Kondo Date: Thu, 28 Mar 2024 22:08:41 +0000 Subject: [PATCH] chore: properly forward args from `nx-release-publish` to `build` target (to disable nx cache) --- nx.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nx.json b/nx.json index 4912e261..7e849e8e 100644 --- a/nx.json +++ b/nx.json @@ -56,7 +56,9 @@ }, "nx-release-publish": { "cache": false, - "dependsOn": ["build"], + "dependsOn": [ + { "projects": "self", "target": "build", "params": "forward" } + ], "options": { "packageRoot": "dist/packages/{projectName}" }