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 set up Nx Cloud for your Nx workspace enabling distributed caching
and GitHub integration for fast CI and improved Developer Experience.

You can access your Nx Cloud workspace by going to 
https://cloud.nx.app/orgs/64f9f6349ef06684181b88d5/workspaces/6675efbd481cbf16cc3fdd5a

**Note:** This commit attempts to maintain formatting of the nx.json, however you may need to correct formatting by running an nx format command and committing the changes.
  • Loading branch information
beeman committed Jun 21, 2024
1 parent d116544 commit 0f99c09
Showing 1 changed file with 7 additions and 30 deletions.
37 changes: 7 additions & 30 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,21 @@
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"workspaceLayout": {
"projectNameAndRootFormat": "as-provided"
},
"workspaceLayout": { "projectNameAndRootFormat": "as-provided" },
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"cache": true
},
"e2e": {
"cache": true
},
"build": { "dependsOn": ["^build"], "cache": true },
"e2e": { "cache": true },
"@nx/jest:jest": {
"cache": true,
"inputs": ["default", "^default", "{workspaceRoot}/jest.preset.js"],
"options": {
"passWithNoTests": true
},
"configurations": {
"ci": {
"ci": true,
"codeCoverage": true
}
}
"options": { "passWithNoTests": true },
"configurations": { "ci": { "ci": true, "codeCoverage": true } }
},
"@nx/eslint:lint": {
"inputs": ["default", "{workspaceRoot}/.eslintrc.json", "{workspaceRoot}/.eslintignore"],
"cache": true
}
},
"generators": {
"@nx/react": {
"application": {
"babel": true
},
"library": {
"unitTestRunner": "none"
}
}
},
"nxCloudAccessToken": "NWI4MDc3OTctOTgyZi00ZjhhLWI2NmMtMDM0N2NmNTc5OGZlfHJlYWQtd3JpdGU=",
"generators": { "@nx/react": { "application": { "babel": true }, "library": { "unitTestRunner": "none" } } },
"nxCloudAccessToken": "NzZiOWZhNzQtODMxOS00NzE0LWFiNDAtYWFhMmQxNTU4NTg3fHJlYWQtd3JpdGU=",
"useInferencePlugins": false
}

0 comments on commit 0f99c09

Please sign in to comment.