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://staging.nx.app/orgs/62d013d4d26f260059f7765e/workspaces/679c877cd5cf20060aafed7b

**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
juristr committed Jan 31, 2025
1 parent b710bb5 commit bbe428c
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,19 @@
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"targetDefaults": {
"typecheck": {
"outputs": ["{projectRoot}/out-tsc"],
"dependsOn": ["^typecheck"]
"outputs": [
"{projectRoot}/out-tsc"
],
"dependsOn": [
"^typecheck"
]
}
},
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"default": [
"{projectRoot}/**/*",
"sharedGlobals"
],
"production": [
"default",
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
Expand Down Expand Up @@ -70,6 +77,7 @@
}
}
},
"nxCloudId": "677c180c2f196d703cd4669d",
"bump": 6
}
"nxCloudId": "679c877cd5cf20060aafed7b",
"bump": 6,
"nxCloudUrl": "https://staging.nx.app"
}

0 comments on commit bbe428c

Please sign in to comment.