@storm-software/git-tools 2.131.21 → 2.131.22
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/bin/git.cjs +28 -22
- package/bin/git.cjs.map +1 -1
- package/bin/git.js +28 -22
- package/bin/git.js.map +1 -1
- package/package.json +6 -6
package/bin/git.js
CHANGED
|
@@ -5075,17 +5075,20 @@ ${formatConfigLog(config5)}`,
|
|
|
5075
5075
|
v.newVersion ? extractPreid(v.newVersion) : void 0
|
|
5076
5076
|
])
|
|
5077
5077
|
);
|
|
5078
|
-
const releaseGraph = await createReleaseGraph(
|
|
5079
|
-
|
|
5080
|
-
|
|
5081
|
-
|
|
5082
|
-
|
|
5083
|
-
|
|
5084
|
-
|
|
5078
|
+
const releaseGraph = await createReleaseGraph(
|
|
5079
|
+
{
|
|
5080
|
+
tree: this.tree,
|
|
5081
|
+
projectGraph: this.projectGraph,
|
|
5082
|
+
nxReleaseConfig: this.releaseConfig,
|
|
5083
|
+
filters: {
|
|
5084
|
+
projects: options.projects,
|
|
5085
|
+
groups: options.groups
|
|
5086
|
+
},
|
|
5087
|
+
firstRelease: !!options.firstRelease,
|
|
5088
|
+
verbose: isVerbose(this.workspaceConfig.logLevel)
|
|
5085
5089
|
},
|
|
5086
|
-
|
|
5087
|
-
|
|
5088
|
-
});
|
|
5090
|
+
this.workspaceConfig
|
|
5091
|
+
);
|
|
5089
5092
|
const projectToAdditionalDependencyBumps = /* @__PURE__ */ new Map();
|
|
5090
5093
|
for (const releaseGroup of releaseGraph.releaseGroups) {
|
|
5091
5094
|
if (releaseGroup.projectsRelationship !== "independent") {
|
|
@@ -5404,19 +5407,22 @@ ${Object.keys(allProjectChangelogs).map((p) => ` - ${p}`).join("\n")}
|
|
|
5404
5407
|
"Failed to load the project graph. Please run `nx reset`, then run the `storm-git commit` command again."
|
|
5405
5408
|
);
|
|
5406
5409
|
}
|
|
5407
|
-
const releaseGraph = await createReleaseGraph(
|
|
5408
|
-
|
|
5409
|
-
|
|
5410
|
-
|
|
5411
|
-
|
|
5412
|
-
|
|
5413
|
-
|
|
5410
|
+
const releaseGraph = await createReleaseGraph(
|
|
5411
|
+
{
|
|
5412
|
+
tree: this.tree,
|
|
5413
|
+
projectGraph: this.projectGraph,
|
|
5414
|
+
nxReleaseConfig: this.releaseConfig,
|
|
5415
|
+
filters: {
|
|
5416
|
+
projects: options.projects,
|
|
5417
|
+
groups: options.groups
|
|
5418
|
+
},
|
|
5419
|
+
firstRelease: !!options.firstRelease,
|
|
5420
|
+
verbose,
|
|
5421
|
+
preid: options.preid ?? this.workspaceConfig.preid,
|
|
5422
|
+
versionActionsOptionsOverrides: options.versionActionsOptionsOverrides
|
|
5414
5423
|
},
|
|
5415
|
-
|
|
5416
|
-
|
|
5417
|
-
preid: options.preid ?? this.workspaceConfig.preid,
|
|
5418
|
-
versionActionsOptionsOverrides: options.versionActionsOptionsOverrides
|
|
5419
|
-
});
|
|
5424
|
+
this.workspaceConfig
|
|
5425
|
+
);
|
|
5420
5426
|
if (releaseGraph.filterLog && process.env.NX_RELEASE_INTERNAL_SUPPRESS_FILTER_LOG !== "true") {
|
|
5421
5427
|
writeDebug(formatNxLog(releaseGraph.filterLog), this.workspaceConfig);
|
|
5422
5428
|
}
|