From fb555d7fd464a406261c682f030470b0305c99eb Mon Sep 17 00:00:00 2001 From: cypriannwokolo2-creator Date: Tue, 16 Jun 2026 07:48:46 +0100 Subject: [PATCH] feat(nx-cloud): setup nx cloud workspace This commit sets up Nx Cloud for your Nx workspace, enabling distributed caching and the Nx Cloud GitHub integration for fast CI and improved developer experience. You can access your Nx Cloud workspace by going to https://cloud.nx.app/orgs/6a30f1c994491c8f92af7cbf/workspaces/6a30f1cb94491c8f92af7cc4 > [!TIP] > Run `npx nx generate ci-workflow` if you don't have a CI script configured yet. **Note:** This commit attempts to maintain formatting of the nx.json file, however you may need to correct formatting by running an nx format command and committing the changes. --- nx.json | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) diff --git a/nx.json b/nx.json index 8547950..1740469 100644 --- a/nx.json +++ b/nx.json @@ -14,23 +14,11 @@ "sharedGlobals": ["{workspaceRoot}/tsconfig.base.json", "{workspaceRoot}/.eslintrc.json"] }, "targetDefaults": { - "build": { - "cache": true, - "dependsOn": ["^build"], - "inputs": ["production", "^production"] - }, - "test": { - "cache": true, - "inputs": ["default", "^production"] - }, - "lint": { - "cache": true, - "inputs": ["default"] - } + "build": { "cache": true, "dependsOn": ["^build"], "inputs": ["production", "^production"] }, + "test": { "cache": true, "inputs": ["default", "^production"] }, + "lint": { "cache": true, "inputs": ["default"] } }, "defaultBase": "main", - "workspaceLayout": { - "apps": "apps", - "libs": "libs" - } + "workspaceLayout": { "apps": "apps", "libs": "libs" }, + "nxCloudAccessToken": "ZWUxMGI5YmUtMWQ3OC00ZmI0LWExODktZjhkMWY2MzY0MjVhfHJlYWQtd3JpdGU=" }