Skip to content

Commit 72649d3

Browse files
committed
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/629486e54f3e270005dc0526/workspaces/67c859dd862a93f16da79c89 **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.
1 parent 550c663 commit 72649d3

File tree

1 file changed

+9
-31
lines changed

1 file changed

+9
-31
lines changed

nx.json

Lines changed: 9 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,8 @@
2323
"previewTargetName": "preview"
2424
}
2525
},
26-
{
27-
"plugin": "@nx/eslint/plugin",
28-
"options": {
29-
"targetName": "lint"
30-
}
31-
},
32-
{
33-
"plugin": "@nx/jest/plugin",
34-
"options": {
35-
"targetName": "test"
36-
}
37-
}
26+
{ "plugin": "@nx/eslint/plugin", "options": { "targetName": "lint" } },
27+
{ "plugin": "@nx/jest/plugin", "options": { "targetName": "test" } }
3828
],
3929
"targetDefaults": {
4030
"@nx/js:tsc": {
@@ -47,9 +37,7 @@
4737
"dependsOn": ["^build"],
4838
"inputs": ["production", "^production"]
4939
},
50-
"test": {
51-
"cache": true
52-
},
40+
"test": { "cache": true },
5341
"@nx/angular:ng-packagr-lite": {
5442
"cache": true,
5543
"dependsOn": ["^build"],
@@ -63,20 +51,11 @@
6351
"style": "css",
6452
"unitTestRunner": "jest"
6553
},
66-
"@nx/angular:library": {
67-
"linter": "eslint",
68-
"unitTestRunner": "jest"
69-
},
70-
"@nx/angular:component": {
71-
"style": "css"
72-
}
54+
"@nx/angular:library": { "linter": "eslint", "unitTestRunner": "jest" },
55+
"@nx/angular:component": { "style": "css" }
7356
},
7457
"release": {
75-
"changelog": {
76-
"projectChangelogs": {
77-
"createRelease": "github"
78-
}
79-
},
58+
"changelog": { "projectChangelogs": { "createRelease": "github" } },
8059
"projectsRelationship": "independent",
8160
"projects": [
8261
"*",
@@ -93,10 +72,9 @@
9372
"version": {
9473
"preVersionCommand": "npx nx run-many -t build -p nestjs-json-rpc,nestjs-json-rpc-sdk,json-api-nestjs,json-api-nestjs-sdk",
9574
"conventionalCommits": true,
96-
"generatorOptions": {
97-
"fallbackCurrentVersionResolver": "1.0.0"
98-
}
75+
"generatorOptions": { "fallbackCurrentVersionResolver": "1.0.0" }
9976
}
10077
},
101-
"useLegacyCache": true
78+
"useLegacyCache": true,
79+
"nxCloudId": "67c859dd862a93f16da79c89"
10280
}

0 commit comments

Comments
 (0)