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/66d892f59d8f2a9508fbb837/workspaces/66d893079afc0a2de49bb514

**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
cre8 committed Sep 4, 2024
1 parent c256e2f commit 0bdf57f
Showing 1 changed file with 8 additions and 28 deletions.
36 changes: 8 additions & 28 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,7 @@
"{workspaceRoot}/.github/workflows/cd.yml"
]
},
"workspaceLayout": {
"appsDir": "apps",
"libsDir": "libs"
},
"workspaceLayout": { "appsDir": "apps", "libsDir": "libs" },
"plugins": [
{
"plugin": "@nx/vite/plugin",
Expand All @@ -40,29 +37,17 @@
"previewTargetName": "preview"
}
},
{
"plugin": "@nx/eslint/plugin",
"options": {
"targetName": "lint"
}
},
{ "plugin": "@nx/eslint/plugin", "options": { "targetName": "lint" } },
{
"plugin": "@nx/jest/plugin",
"options": {
"targetName": "test"
},
"options": { "targetName": "test" },
"exclude": [
"apps/issuer-backend-e2e/**/*",
"apps/verifier-backend-e2e/**/*",
"apps/holder-backend-e2e/**/*"
]
},
{
"plugin": "@nx/playwright/plugin",
"options": {
"targetName": "e2e"
}
}
{ "plugin": "@nx/playwright/plugin", "options": { "targetName": "e2e" } }
],
"targetDefaults": {
"@angular-devkit/build-angular:application": {
Expand Down Expand Up @@ -93,13 +78,8 @@
"style": "scss",
"unitTestRunner": "jest"
},
"@nx/angular:library": {
"linter": "eslint",
"unitTestRunner": "jest"
},
"@nx/angular:component": {
"style": "scss",
"skipTests": true
}
}
"@nx/angular:library": { "linter": "eslint", "unitTestRunner": "jest" },
"@nx/angular:component": { "style": "scss", "skipTests": true }
},
"nxCloudAccessToken": "ZDI5YjgxN2MtMzcxZS00ZTVjLWJhOTItYWZiMGM5MGIzM2U5fHJlYWQtd3JpdGU="
}

0 comments on commit 0bdf57f

Please sign in to comment.