From 4d416162edcb568c923ee21b3a2ced6c89fd7401 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Fri, 26 May 2023 15:32:51 -0400 Subject: [PATCH] chore: Fix nx target defaults Signed-off-by: Sebastian Malton --- nx.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nx.json b/nx.json index 3950ff391f..eb1a100e47 100644 --- a/nx.json +++ b/nx.json @@ -17,27 +17,27 @@ }, "build:app": { "dependsOn": [ - "^build" + "build" ] }, "test:integration": { "dependsOn": [ - "^build" + "build:app" ] }, "build:docs": { "dependsOn": [ - "^build" + "build" ] }, "lint": { "dependsOn": [ - "^build" + "build" ] }, "test:unit": { "dependsOn": [ - "^build" + "build" ] } }