From 1478ef503ade59f2aa172ec1c3a059019ee97e6a Mon Sep 17 00:00:00 2001 From: Adria Navarro Date: Fri, 20 Oct 2023 13:31:50 +0200 Subject: [PATCH] Don't use nx cloud locally --- nx.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/nx.json b/nx.json index fef6893f9d..618395ec90 100644 --- a/nx.json +++ b/nx.json @@ -3,14 +3,16 @@ "default": { "runner": "nx-cloud", "options": { - "cacheableOperations": ["build", "test", "check:types"], - "accessToken": "MmM4OGYxNzItMDBlYy00ZmE3LTk4MTYtNmJhYWMyZjBjZTUyfHJlYWQ=" + "cacheableOperations": ["build", "test", "check:types"] } } }, "targetDefaults": { "build": { - "inputs": ["{workspaceRoot}/scripts/build.js"] + "inputs": [ + "{workspaceRoot}/scripts/build.js", + "{workspaceRoot}/lerna.json" + ] } } }