From 93c9dfdba1ab3649b19f85962b471d0665dd464c Mon Sep 17 00:00:00 2001 From: rysiva <50093319+rysiva@users.noreply.github.com> Date: Wed, 4 Mar 2026 23:09:45 +0900 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/69a83d242af671e60456fa8f/workspaces/69a83d262ad3d6e6e9ffbb9d > [!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 | 41 ++++++++--------------------------------- 1 file changed, 8 insertions(+), 33 deletions(-) diff --git a/nx.json b/nx.json index 15fe333..f3a5efe 100644 --- a/nx.json +++ b/nx.json @@ -18,9 +18,7 @@ { "plugin": "@nx/js/typescript", "options": { - "typecheck": { - "targetName": "typecheck" - }, + "typecheck": { "targetName": "typecheck" }, "build": { "targetName": "build", "configName": "tsconfig.lib.json", @@ -40,36 +38,13 @@ "watchDepsTargetName": "watch-deps" } }, - { - "plugin": "@nx/eslint/plugin", - "options": { - "targetName": "lint" - } - }, - { - "plugin": "@nx/playwright/plugin", - "options": { - "targetName": "e2e" - } - }, - { - "plugin": "@nx/jest/plugin", - "options": { - "targetName": "test" - } - } + { "plugin": "@nx/eslint/plugin", "options": { "targetName": "lint" } }, + { "plugin": "@nx/playwright/plugin", "options": { "targetName": "e2e" } }, + { "plugin": "@nx/jest/plugin", "options": { "targetName": "test" } } ], - "targetDefaults": { - "test": { - "dependsOn": ["^build"] - } - }, + "targetDefaults": { "test": { "dependsOn": ["^build"] } }, "generators": { - "@nx/next": { - "application": { - "style": "tailwind", - "linter": "eslint" - } - } - } + "@nx/next": { "application": { "style": "tailwind", "linter": "eslint" } } + }, + "nxCloudId": "69a83d262ad3d6e6e9ffbb9d" }