@nx/gradle 21.3.0-canary.20250710-13551c9 → 21.3.0-canary.20250712-18e5d95
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
|
Binary file
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nx/gradle",
|
3
|
-
"version": "21.3.0-canary.
|
3
|
+
"version": "21.3.0-canary.20250712-18e5d95",
|
4
4
|
"private": false,
|
5
5
|
"description": "The Nx Plugin for Gradle allows Gradle tasks to be run through Nx",
|
6
6
|
"repository": {
|
@@ -35,7 +35,7 @@
|
|
35
35
|
"migrations": "./migrations.json"
|
36
36
|
},
|
37
37
|
"dependencies": {
|
38
|
-
"@nx/devkit": "21.3.0-canary.
|
38
|
+
"@nx/devkit": "21.3.0-canary.20250712-18e5d95"
|
39
39
|
},
|
40
40
|
"publishConfig": {
|
41
41
|
"access": "public"
|
@@ -17,11 +17,13 @@ async function gradleExecutor(options, context) {
|
|
17
17
|
if (options.testClassName) {
|
18
18
|
args.push(`--tests`, options.testClassName);
|
19
19
|
}
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
20
|
+
if (options.excludeDependsOn) {
|
21
|
+
(0, get_exclude_task_1.getExcludeTasks)(new Set([`${context.projectName}:${context.targetName}`]), context.projectGraph.nodes).forEach((task) => {
|
22
|
+
if (task) {
|
23
|
+
args.push('--exclude-task', task);
|
24
|
+
}
|
25
|
+
});
|
26
|
+
}
|
25
27
|
try {
|
26
28
|
const { success } = await (0, run_commands_impl_1.default)({
|
27
29
|
command: `${gradlewPath} ${options.taskName}`,
|
@@ -36,7 +36,7 @@ function getCiCommands(ci) {
|
|
36
36
|
function getNxCloudFixCiCommand() {
|
37
37
|
return {
|
38
38
|
comments: [
|
39
|
-
`Nx Cloud recommends fixes for failures to help you get CI green faster. Learn more: https://nx.dev/
|
39
|
+
`Nx Cloud recommends fixes for failures to help you get CI green faster. Learn more: https://nx.dev/ci/features/self-healing-ci`,
|
40
40
|
],
|
41
41
|
command: `./nx fix-ci`,
|
42
42
|
alwaysRun: true,
|