From 7f0388204b5a092a05d8c179c818ce0a32c4c4e9 Mon Sep 17 00:00:00 2001 From: Chau Tran <25516557+nartc@users.noreply.github.com> Date: Fri, 26 Jun 2026 11:23:45 -0400 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/63ffb2b3138045000dc36fe6/workspaces/6a3e997e7427195a38f6bdbc > [!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 | 26 +++++++------------------- 1 file changed, 7 insertions(+), 19 deletions(-) diff --git a/nx.json b/nx.json index 9e1b798e1..5384b79b0 100644 --- a/nx.json +++ b/nx.json @@ -12,9 +12,7 @@ "prod": ["!{projectRoot}/**/*.spec.ts"] }, "targetDefaults": { - "build": { - "cache": true - }, + "build": { "cache": true }, "package": { "cache": true, "inputs": [ @@ -23,13 +21,8 @@ "{workspaceRoot}/tools/scripts/build-packages.mjs" ] }, - "package-lib": { - "cache": true - }, - "test": { - "inputs": ["default", "^prod"], - "cache": true - }, + "package-lib": { "cache": true }, + "test": { "inputs": ["default", "^prod"], "cache": true }, "@nx/eslint:lint": { "inputs": [ "default", @@ -57,18 +50,13 @@ }, "changelog": { "automaticFromRef": true, - "projectChangelogs": { - "createRelease": "github" - } - } - }, - "pluginsConfig": { - "@nx/js": { - "analyzeSourceFiles": true + "projectChangelogs": { "createRelease": "github" } } }, + "pluginsConfig": { "@nx/js": { "analyzeSourceFiles": true } }, "nxCloudAccessToken": "MjMzYTA3OWMtMjQ1MS00YzFhLWExYTYtODMzMTM5MmQxZmE1fHJlYWQtd3JpdGU=", "useInferencePlugins": true, "defaultBase": "main", - "analytics": false + "analytics": false, + "nxCloudId": "6a3e997e7427195a38f6bdbc" }