Skip to content

Commit

Permalink
feat(nx-cloud): setup nx cloud workspace
Browse files Browse the repository at this point in the history
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/677fc1544e5e4b6c42b766aa/workspaces/677fc1684e5e4b6c42b766ac

**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.
  • Loading branch information
yumin-chen committed Jan 9, 2025
1 parent 1873513 commit 0449415
Showing 1 changed file with 69 additions and 24 deletions.
93 changes: 69 additions & 24 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"dependsOn": [
"^build"
],
"outputs": [
"{projectRoot}/build",
"{projectRoot}/dist",
Expand All @@ -10,62 +12,105 @@
"cache": true
},
"release": {
"dependsOn": ["^build"],
"outputs": ["{projectRoot}/build"]
"dependsOn": [
"^build"
],
"outputs": [
"{projectRoot}/build"
]
},
"build:test": {
"dependsOn": ["^build"],
"outputs": ["{projectRoot}/build"],
"dependsOn": [
"^build"
],
"outputs": [
"{projectRoot}/build"
],
"cache": true
},
"build:beta": {
"dependsOn": ["^build"],
"outputs": ["{projectRoot}/build"]
"dependsOn": [
"^build"
],
"outputs": [
"{projectRoot}/build"
]
},
"build:desktop": {
"dependsOn": ["^build"],
"outputs": ["{projectRoot}/build"],
"dependsOn": [
"^build"
],
"outputs": [
"{projectRoot}/build"
],
"cache": true
},
"start": {
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
},
"start:desktop": {
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
},
"test:e2e": {
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
},
"test": {
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
},
"run-android": {
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
},
"run-ios": {
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
},
"build-ios": {
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
},
"build-android": {
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
},
"release-android": {
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
},
"release-android-bundle": {
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
},
"release-ios": {
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
}
},
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"default": [
"{projectRoot}/**/*",
"sharedGlobals"
],
"sharedGlobals": [],
"production": ["default"]
"production": [
"default"
]
},
"parallel": 4,
"nxCloudAccessToken": "ZWM3ODgxNDgtNGUzZC00MjQ0LWE3MzMtZDdhMzE3ZGY2MWFlfHJlYWQ="
}
"nxCloudAccessToken": "ZDUxYjg1NjAtNGYyYy00OTdlLWFmNjMtYzExNjQyZWNmZDlhfHJlYWQtd3JpdGU="
}

0 comments on commit 0449415

Please sign in to comment.