nx 18.1.0-canary.20240210-b1d0294 → 18.1.0-canary.20240214-b625a79
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 +12 -12
- package/src/command-line/migrate/migrate.js +11 -1
- package/src/command-line/release/changelog.d.ts +16 -1
- package/src/command-line/release/changelog.js +104 -194
- package/src/command-line/release/command-object.d.ts +1 -0
- package/src/command-line/release/command-object.js +1 -1
- package/src/command-line/release/release.js +56 -3
- package/src/command-line/release/utils/git.d.ts +5 -1
- package/src/command-line/release/utils/git.js +26 -11
- package/src/command-line/release/utils/github.d.ts +4 -8
- package/src/command-line/release/utils/github.js +61 -2
- package/src/command-line/release/utils/shared.d.ts +1 -0
- package/src/command-line/release/utils/shared.js +3 -1
- package/src/config/nx-json.d.ts +1 -13
- package/src/core/graph/main.js +1 -1
- package/src/core/graph/polyfills.js +1 -1
- package/src/utils/output.js +4 -2
package/src/utils/output.js
CHANGED
@@ -160,7 +160,8 @@ class CLIOutput {
|
|
160
160
|
}
|
161
161
|
logCommandOutput(message, taskStatus, output) {
|
162
162
|
let commandOutputWithStatus = this.getCommandWithStatus(message, taskStatus);
|
163
|
-
if (process.env.
|
163
|
+
if (process.env.NX_SKIP_LOG_GROUPING !== 'true' &&
|
164
|
+
process.env.GITHUB_ACTIONS) {
|
164
165
|
const icon = this.getStatusIcon(taskStatus);
|
165
166
|
commandOutputWithStatus = `${GH_GROUP_PREFIX}${icon} ${commandOutputWithStatus}`;
|
166
167
|
}
|
@@ -169,7 +170,8 @@ class CLIOutput {
|
|
169
170
|
this.addNewline();
|
170
171
|
this.addNewline();
|
171
172
|
this.writeToStdOut(output);
|
172
|
-
if (process.env.
|
173
|
+
if (process.env.NX_SKIP_LOG_GROUPING !== 'true' &&
|
174
|
+
process.env.GITHUB_ACTIONS) {
|
173
175
|
this.writeToStdOut(GH_GROUP_SUFFIX);
|
174
176
|
}
|
175
177
|
}
|