From 2c8f76efd1d6cc17dff4a605be2b4fd547f6ac19 Mon Sep 17 00:00:00 2001 From: Lachlan Collins <1667261+lachlancollins@users.noreply.github.com> Date: Sat, 27 Sep 2025 12:37:16 +1000 Subject: [PATCH 1/3] 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/6412ca9d1c251d000efa21ba/workspaces/68d74dda9d18071f643ecda4 **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 | 67 +++++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 51 insertions(+), 16 deletions(-) diff --git a/nx.json b/nx.json index be6938dc..5df9940c 100644 --- a/nx.json +++ b/nx.json @@ -23,38 +23,73 @@ "targetDefaults": { "test:lib": { "cache": true, - "dependsOn": ["^build"], - "inputs": ["default", "^production"], - "outputs": ["{projectRoot}/coverage"] + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^production" + ], + "outputs": [ + "{projectRoot}/coverage" + ] }, "test:eslint": { "cache": true, - "dependsOn": ["^build"], - "inputs": ["default", "^production", "{workspaceRoot}/eslint.config.js"] + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^production", + "{workspaceRoot}/eslint.config.js" + ] }, "test:types": { "cache": true, - "dependsOn": ["^build"], - "inputs": ["default", "^production"] + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^production" + ] }, "test:build": { "cache": true, - "dependsOn": ["build"], - "inputs": ["production"] + "dependsOn": [ + "build" + ], + "inputs": [ + "production" + ] }, "build": { "cache": true, - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "outputs": ["{projectRoot}/build", "{projectRoot}/dist"] + "dependsOn": [ + "^build" + ], + "inputs": [ + "production", + "^production" + ], + "outputs": [ + "{projectRoot}/build", + "{projectRoot}/dist" + ] }, "test:knip": { "cache": true, - "inputs": ["{workspaceRoot}/**/*"] + "inputs": [ + "{workspaceRoot}/**/*" + ] }, "test:sherif": { "cache": true, - "inputs": ["{workspaceRoot}/**/package.json"] + "inputs": [ + "{workspaceRoot}/**/package.json" + ] } - } -} + }, + "nxCloudId": "68d74dda9d18071f643ecda4" +} \ No newline at end of file From c809541c87255009b75e61b9d6f8fbe9b35bd1fc Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Sat, 27 Sep 2025 02:38:20 +0000 Subject: [PATCH 2/3] ci: apply automated fixes --- nx.json | 64 ++++++++++++++------------------------------------------- 1 file changed, 15 insertions(+), 49 deletions(-) diff --git a/nx.json b/nx.json index 5df9940c..4f62c1bf 100644 --- a/nx.json +++ b/nx.json @@ -23,73 +23,39 @@ "targetDefaults": { "test:lib": { "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^production" - ], - "outputs": [ - "{projectRoot}/coverage" - ] + "dependsOn": ["^build"], + "inputs": ["default", "^production"], + "outputs": ["{projectRoot}/coverage"] }, "test:eslint": { "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^production", - "{workspaceRoot}/eslint.config.js" - ] + "dependsOn": ["^build"], + "inputs": ["default", "^production", "{workspaceRoot}/eslint.config.js"] }, "test:types": { "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^production" - ] + "dependsOn": ["^build"], + "inputs": ["default", "^production"] }, "test:build": { "cache": true, - "dependsOn": [ - "build" - ], - "inputs": [ - "production" - ] + "dependsOn": ["build"], + "inputs": ["production"] }, "build": { "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "production", - "^production" - ], - "outputs": [ - "{projectRoot}/build", - "{projectRoot}/dist" - ] + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "outputs": ["{projectRoot}/build", "{projectRoot}/dist"] }, "test:knip": { "cache": true, - "inputs": [ - "{workspaceRoot}/**/*" - ] + "inputs": ["{workspaceRoot}/**/*"] }, "test:sherif": { "cache": true, - "inputs": [ - "{workspaceRoot}/**/package.json" - ] + "inputs": ["{workspaceRoot}/**/package.json"] } }, "nxCloudId": "68d74dda9d18071f643ecda4" -} \ No newline at end of file +} From 8eae14ec750fb8a260263cceb3e42813aeb13d3d Mon Sep 17 00:00:00 2001 From: Lachlan Collins <1667261+lachlancollins@users.noreply.github.com> Date: Sat, 27 Sep 2025 12:39:33 +1000 Subject: [PATCH 3/3] Format --- nx.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nx.json b/nx.json index 4f62c1bf..b3b2c519 100644 --- a/nx.json +++ b/nx.json @@ -1,6 +1,7 @@ { "$schema": "./node_modules/nx/schemas/nx-schema.json", "defaultBase": "main", + "nxCloudId": "68d74dda9d18071f643ecda4", "useInferencePlugins": false, "parallel": 5, "namedInputs": { @@ -56,6 +57,5 @@ "cache": true, "inputs": ["{workspaceRoot}/**/package.json"] } - }, - "nxCloudId": "68d74dda9d18071f643ecda4" + } }