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" ] } }