From f1d594a0c6a5848d91f62a9814b1d65c51473aec Mon Sep 17 00:00:00 2001 From: Lachlan Collins <1667261+lachlancollins@users.noreply.github.com> Date: Sat, 28 Mar 2026 11:06:43 +1100 Subject: [PATCH 1/2] 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/69c71b9038eed5e74d5da8e4 > [!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 | 62 +++++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 47 insertions(+), 15 deletions(-) diff --git a/nx.json b/nx.json index 7b9c66d..c81cfd4 100644 --- a/nx.json +++ b/nx.json @@ -1,7 +1,7 @@ { "$schema": "./node_modules/nx/schemas/nx-schema.json", "defaultBase": "main", - "nxCloudId": "6932bc70f7d82526902f62fa", + "nxCloudId": "69c71b9038eed5e74d5da8e4", "useInferencePlugins": false, "parallel": 5, "tui": { @@ -27,37 +27,69 @@ "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" + ] }, "build": { "cache": true, - "dependsOn": ["^build"], - "inputs": ["production", "^production"], - "outputs": ["{projectRoot}/build", "{projectRoot}/dist"] + "dependsOn": [ + "^build" + ], + "inputs": [ + "production", + "^production" + ], + "outputs": [ + "{projectRoot}/build", + "{projectRoot}/dist" + ] }, "test:docs": { "cache": true, - "inputs": ["{workspaceRoot}/docs/**/*"] + "inputs": [ + "{workspaceRoot}/docs/**/*" + ] }, "test:knip": { "cache": true, - "inputs": ["{workspaceRoot}/**/*"] + "inputs": [ + "{workspaceRoot}/**/*" + ] }, "test:sherif": { "cache": true, - "inputs": ["{workspaceRoot}/**/package.json"] + "inputs": [ + "{workspaceRoot}/**/package.json" + ] } } -} +} \ No newline at end of file From d37e5733d4648d2ccfd518bf73f5152f67877d79 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Sat, 28 Mar 2026 00:07:24 +0000 Subject: [PATCH 2/2] ci: apply automated fixes --- nx.json | 60 ++++++++++++++------------------------------------------- 1 file changed, 14 insertions(+), 46 deletions(-) diff --git a/nx.json b/nx.json index c81cfd4..0888397 100644 --- a/nx.json +++ b/nx.json @@ -27,69 +27,37 @@ "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"] }, "build": { "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "production", - "^production" - ], - "outputs": [ - "{projectRoot}/build", - "{projectRoot}/dist" - ] + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "outputs": ["{projectRoot}/build", "{projectRoot}/dist"] }, "test:docs": { "cache": true, - "inputs": [ - "{workspaceRoot}/docs/**/*" - ] + "inputs": ["{workspaceRoot}/docs/**/*"] }, "test:knip": { "cache": true, - "inputs": [ - "{workspaceRoot}/**/*" - ] + "inputs": ["{workspaceRoot}/**/*"] }, "test:sherif": { "cache": true, - "inputs": [ - "{workspaceRoot}/**/package.json" - ] + "inputs": ["{workspaceRoot}/**/package.json"] } } -} \ No newline at end of file +}