Skip to content

Commit 47f14d3

Browse files
BioPhotonmatejchalk
authored andcommitted
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/65d4d8449e4953a5ed64ff4a/workspaces/65d4d862d2adb16a45a4bc7c **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 a419aec commit 47f14d3

File tree

1 file changed

+12
-33
lines changed

1 file changed

+12
-33
lines changed

nx.json

Lines changed: 12 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@
2323
"options": {
2424
"configFile": "{projectRoot}/vitest.unit.config.ts",
2525
"passWithNoTests": true,
26-
"coverage": {
27-
"enabled": true
28-
}
26+
"coverage": { "enabled": true }
2927
}
3028
},
3129
"int-test": {
@@ -35,14 +33,10 @@
3533
"options": {
3634
"configFile": "{projectRoot}/vitest.int.config.ts",
3735
"passWithNoTests": true,
38-
"coverage": {
39-
"enabled": true
40-
}
36+
"coverage": { "enabled": true }
4137
}
4238
},
43-
"e2e": {
44-
"dependsOn": ["^build"]
45-
},
39+
"e2e": { "dependsOn": ["^build"] },
4640
"lint": {
4741
"inputs": ["default", "{workspaceRoot}/eslint.config.?(c)js"],
4842
"executor": "@nx/linter:eslint",
@@ -56,16 +50,11 @@
5650
]
5751
}
5852
},
59-
"nxv-pkg-install": {
60-
"parallelism": false
61-
},
53+
"nxv-pkg-install": { "parallelism": false },
6254
"@nx/vite:test": {
6355
"cache": true,
6456
"inputs": ["default", "^production"],
65-
"options": {
66-
"passWithNoTests": true,
67-
"watch": false
68-
}
57+
"options": { "passWithNoTests": true, "watch": false }
6958
},
7059
"nx-release-publish": {
7160
"dependsOn": ["build"],
@@ -99,20 +88,15 @@
9988
],
10089
"sharedGlobals": []
10190
},
102-
"workspaceLayout": {
103-
"appsDir": "examples",
104-
"libsDir": "packages"
105-
},
91+
"workspaceLayout": { "appsDir": "examples", "libsDir": "packages" },
10692
"generators": {},
10793
"release": {
10894
"projects": ["packages/*"],
10995
"projectsRelationship": "fixed",
11096
"changelog": {
11197
"automaticFromRef": true,
11298
"projectChangelogs": false,
113-
"workspaceChangelog": {
114-
"createRelease": "github"
115-
}
99+
"workspaceChangelog": { "createRelease": "github" }
116100
},
117101
"git": {
118102
"commit": true,
@@ -123,9 +107,7 @@
123107
},
124108
"version": {
125109
"conventionalCommits": true,
126-
"generatorOptions": {
127-
"skipLockFileUpdate": true
128-
}
110+
"generatorOptions": { "skipLockFileUpdate": true }
129111
},
130112
"releaseTagPattern": "v{version}"
131113
},
@@ -136,14 +118,11 @@
136118
"environments": {
137119
"environmentsDir": "tmp/e2e",
138120
"targetNames": ["e2e"],
139-
"inferredTargets": {
140-
"e2e": "e2e-test"
141-
}
121+
"inferredTargets": { "e2e": "e2e-test" }
142122
},
143-
"packages": {
144-
"filterByTags": ["publishable"]
145-
}
123+
"packages": { "filterByTags": ["publishable"] }
146124
}
147125
}
148-
]
126+
],
127+
"nxCloudId": "65d4d862d2adb16a45a4bc7c"
149128
}

0 commit comments

Comments
 (0)