@nx/gradle 20.5.0-canary.20250212-7c5fcf3 → 20.5.0-canary.20250213-b8ee838
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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/gradle",
|
|
3
|
-
"version": "20.5.0-canary.
|
|
3
|
+
"version": "20.5.0-canary.20250213-b8ee838",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Nx Plugin for Gradle allows Gradle tasks to be run through Nx",
|
|
6
6
|
"repository": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"migrations": "./migrations.json"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@nx/devkit": "20.5.0-canary.
|
|
37
|
+
"@nx/devkit": "20.5.0-canary.20250213-b8ee838"
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
@@ -28,6 +28,7 @@ async function getProjectReportLines(gradlewFile) {
|
|
|
28
28
|
try {
|
|
29
29
|
projectReportBuffer = await (0, exec_gradle_1.execGradleAsync)(gradlewFile, [
|
|
30
30
|
'projectReportAll',
|
|
31
|
+
process.env.NX_VERBOSE_LOGGING === 'true' ? '--info' : '',
|
|
31
32
|
]);
|
|
32
33
|
}
|
|
33
34
|
catch (e) {
|
|
@@ -64,8 +65,15 @@ async function getProjectReportLines(gradlewFile) {
|
|
|
64
65
|
], []);
|
|
65
66
|
}
|
|
66
67
|
}
|
|
67
|
-
|
|
68
|
+
const projectReportLines = projectReportBuffer
|
|
68
69
|
.toString()
|
|
69
70
|
.split(exports.newLineSeparator)
|
|
70
71
|
.filter((line) => line.trim() !== '');
|
|
72
|
+
if (process.env.NX_VERBOSE_LOGGING === 'true') {
|
|
73
|
+
devkit_1.output.log({
|
|
74
|
+
title: `Successfully ran projectReportAll or projectRerport task using ${gradlewFile}`,
|
|
75
|
+
bodyLines: projectReportLines,
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
return projectReportLines;
|
|
71
79
|
}
|