Skip to content

Commit dca0479

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/676da9573c27485c6fe726df/workspaces/676da9703c27485c6fe726e1 **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 7ffafd2 commit dca0479

File tree

1 file changed

+12
-42
lines changed

1 file changed

+12
-42
lines changed

nx.json

Lines changed: 12 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,8 @@
3434
"serveStaticTargetName": "serve-static"
3535
}
3636
},
37-
{
38-
"plugin": "@nx/eslint/plugin",
39-
"options": {
40-
"targetName": "lint"
41-
}
42-
},
43-
{
44-
"plugin": "@nx/playwright/plugin",
45-
"options": {
46-
"targetName": "e2e"
47-
}
48-
},
37+
{ "plugin": "@nx/eslint/plugin", "options": { "targetName": "lint" } },
38+
{ "plugin": "@nx/playwright/plugin", "options": { "targetName": "e2e" } },
4939
{
5040
"plugin": "@nx/webpack/plugin",
5141
"options": {
@@ -56,9 +46,7 @@
5646
},
5747
{
5848
"plugin": "@nx/jest/plugin",
59-
"options": {
60-
"targetName": "test"
61-
},
49+
"options": { "targetName": "test" },
6250
"exclude": ["apps/books-api-e2e/**/*"]
6351
}
6452
],
@@ -68,9 +56,7 @@
6856
"dependsOn": ["^build"],
6957
"inputs": ["production", "^production"]
7058
},
71-
"e2e-ci--**/*": {
72-
"dependsOn": ["^build"]
73-
},
59+
"e2e-ci--**/*": { "dependsOn": ["^build"] },
7460
"@nx/vite:build": {
7561
"cache": true,
7662
"dependsOn": ["^build"],
@@ -88,38 +74,21 @@
8874
"projectsRelationship": "independent",
8975
"conventionalCommits": {
9076
"types": {
91-
"fix": {
92-
"semverBump": "patch",
93-
"changelog": {
94-
"title": "Bug Fixes"
95-
}
96-
},
77+
"fix": { "semverBump": "patch", "changelog": { "title": "Bug Fixes" } },
9778
"feat": {
9879
"semverBump": "minor",
99-
"changelog": {
100-
"title": "New Features"
101-
}
80+
"changelog": { "title": "New Features" }
10281
},
10382
"docs": {
10483
"semverBump": "patch",
105-
"changelog": {
106-
"title": "Documentation Updates"
107-
}
84+
"changelog": { "title": "Documentation Updates" }
10885
},
10986
"build": {
11087
"semverBump": "minor",
111-
"changelog": {
112-
"title": "Other Updates"
113-
}
88+
"changelog": { "title": "Other Updates" }
11489
},
115-
"chore": {
116-
"semverBump": "none",
117-
"changelog": false
118-
},
119-
"style": {
120-
"semverBump": "patch",
121-
"changelog": false
122-
}
90+
"chore": { "semverBump": "none", "changelog": false },
91+
"style": { "semverBump": "patch", "changelog": false }
12392
}
12493
},
12594
"version": {
@@ -141,5 +110,6 @@
141110
}
142111
}
143112
}
144-
}
113+
},
114+
"nxCloudAccessToken": "NzY1ODc3OWUtNzg4OS00NzNkLTliNmMtZTRhY2I3NjEzNjU0fHJlYWQtd3JpdGU="
145115
}

0 commit comments

Comments
 (0)